:root {
    --primary-color: #0055ff;
    --dark-color: #111111;
    --light-color: #666666;
    --border-color: #00000033;
    --shadow-color: #0000001a;
    --danger-color: #ff0000;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    line-height: 20px;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 430px;
    height: 64px;
    margin: 0 auto;
    padding: 0 17px;
    font-size: 17px;
    font-weight: 600;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
    box-shadow: 10px 0 10px -10px var(--shadow-color);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
}

.main-wrapper {
    width: 100%;
    max-width: 430px;
    overflow-y: auto;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px var(--shadow-color);
    box-sizing: border-box;
}

.section {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 34px;
}

.cta-section {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 34px;
    background: #cdcdcd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 430px;
    margin: 0 calc((100% - 430px) / 2);
    padding: 20px 34px 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: white;
    box-sizing: border-box;
    box-shadow: 0px -4px 10px 0px var(--shadow-color);
}

@media (max-width: 430px) {
    .footer {
        margin: 0;
    }
}

ul.nav-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
}

ul.nav-menu-list > li {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

ul.nav-menu-list > li > ul {
    list-style: none;
    padding: 0 0 0 40px;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    color: var(--dark-color);
}

ul.nav-menu-list > li > ul > li {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
}

.nav-menu-list a {
    text-decoration: none;
    color: inherit;
}

.nav-menu-list li.active {
    color: var(--primary-color) !important;
}

.menu-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-item-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
}

/* .card {
    text-align: center;
    padding: 20px;
}

.card-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
} */

.row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    box-sizing: border-box;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.col-1 {
    flex: 1;
}

.col-2 {
    flex: 2;
}

.col-3 {
    flex: 3;
}

.col-4 {
    flex: 4;
}

.col-5 {
    flex: 5;
}

.col-6 {
    flex: 6;
}

.col-7 {
    flex: 7;
}

.col-8 {
    flex: 8;
}

.col-9 {
    flex: 9;
}

.col-10 {
    flex: 10;
}

.col-11 {
    flex: 11;
}

.col-12 {
    flex: 12;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #00000080;
    box-sizing: border-box;
}

.modal-header {
    display: flex;
    justify-content: flex-end;
}

.modal-content {
    background-color: white;
    margin: 0;
    padding: 18px 24px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.close-button {
    color: var(--light-color);
    font-size: 28px;
}

.close-button:hover,
.close-button:focus {
    color: var(--dark-color);
    text-decoration: none;
    cursor: pointer;
}

h1 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

h2 {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 12px 0;
}

h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 6px 0;
}

p {
    font-size: 14px;
    margin: 0 0 12px 0;
}

hr {
    margin: 29.5px 0;
    border: 1px solid var(--border-color);
}

.text-primary {
    color: var(--primary-color);
}

.error-message {
    font-size: 12px;
    color: var(--danger-color);
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
}

.icon-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
}

.icon-notification {
    position: absolute;
    top: -6px;
    right: -6px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 0;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
}

.btn:disabled {
    cursor: not-allowed;
    color: #8a8a8a;
    background-color: #e7e7e7;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    color: white;
    background-color: var(--primary-color);
}

.btn-light {
    color: white;
    background-color: var(--light-color);
}

.btn-light-outline {
    color: var(--dark-color);
    border: 1px solid var(--dark-color);
    background-color: white;
}

.btn-gray {
    color: #8a8a8a;
    background-color: #e7e7e7;
}

.btn-gray-outline {
    color: #000000;
    border: 1px solid #000000;
    background-color: #e7e7e7;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 8px !important;
}

.mt-2 {
    margin-top: 16px !important;
}

.mt-3 {
    margin-top: 24px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 8px !important;
}

.mb-2 {
    margin-bottom: 16px !important;
}

.mb-3 {
    margin-bottom: 24px !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 8px !important;
}

.ml-2 {
    margin-left: 16px !important;
}

.ml-3 {
    margin-left: 24px !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 8px !important;
}

.text-danger {
    color: var(--danger-color);
}

.form-group {
    width: 100%;
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 12px;
    color: var(--light-color);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 7.4px;
    box-sizing: border-box;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    color: var(--dark-color);
    cursor: pointer;
    user-select: none;
}
.custom-checkbox input[type="checkbox"] {
    display: none;
}
.custom-checkbox .checkmark {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--dark-color);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2.5px;
    width: 3px;
    height: 6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.d-none {
    display: none !important;
}

/* .cta {
    background-color: #eee;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    border-top: 1px solid #ccc;
}

.cta i {
    margin-right: 8px;
}
*/

.spin-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
