body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* line-height: 1.6; */
    color: #333;
    background-color: #f7f9fc;
    margin: 0;
    padding: 0;
}
.main-container {
    min-height: calc(100vh - 110px);
    min-height: calc(100dvh - 110px);
}
.container {
    max-width: 100svw;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.header {
    background-color: #e7e7e7;
    color: rgb(4, 4, 4);
    padding: 30px 20px;
    text-align: center;
}
.header h1 {
    background-color: #e7e7e7;
    color: rgb(0, 0, 0);
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}
.logo-text {
    font-size: 22px;
    font-family: "Oleo Script", system-ui;
    margin: 0;
    color: #333;
    /* background-color: #d38481;
    padding: 4px 8px;
    border-radius: 4px; */
}
/* .body {
    padding: 30px;
    overflow: scroll;
} */
.usage-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}
.usage-table th {
    background-color: #f4f6f9;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
}
.usage-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eaeef5;
}
.usage-table tr:last-child td {
    border-bottom: none;
}
.highlight {
    color: #6e8efb;
    font-weight: 600;
}
.cta-button {
    display: inline-block;
    background-color: #5d4d52;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    margin: 20px 0;
    cursor: pointer;
    text-wrap: nowrap;
}
.footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #777;
    background-color: #dddddd;
}
.icon-container {
    position: relative;
    display: inline-block;
    /* margin: 20px; */
}

.icon {
    fill: currentColor;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon:hover {
    color: #0066cc;
}

.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.icon-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255,255,255,0.8); */
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
