:root {
    --primary-color: #7ea991;
    --primary-color-rgb: 126, 169, 145;
    --primary-dark: #638c76;
    --primary-light: #f0f7f3;
    --accent-color: #a9cbb7;
    --bg-color: #f8faf9;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(126, 169, 145, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body.logged-in,
body.logged-in html {
    overflow: hidden;
    height: 100vh;
}

#page-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    min-height: 100vh;
}

body:not(.logged-in) #page-wrapper {
    display: block;
}

body:not(.logged-in) #content-area {
    height: auto;
    min-height: 100vh;
}

#sidebar {
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 1001;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.02);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
}

#sidebar.active {
    min-width: var(--sidebar-collapsed-width);
    max-width: var(--sidebar-collapsed-width);
}

#sidebar.active .sidebar-header span,
#sidebar.active ul li a span,
#sidebar.active ul li p,
#sidebar.active ul li .d-flex div,
#sidebar.active .mt-auto .badge {
    display: none;
}

#sidebar.active .sidebar-header {
    padding: 2.5rem 0;
}

#sidebar.active .sidebar-logo i {
    margin-right: 0;
}

#sidebar.active ul li a {
    justify-content: center;
    padding: 10px 0;
}

#sidebar.active ul li a i {
    margin-right: 0;
    font-size: 1.4rem;
}

#sidebar.active ul li .d-flex {
    justify-content: center;
    padding: 15px 0 !important;
}

#sidebar.active ul li .d-flex .mr-3 {
    margin-right: 0 !important;
}

#sidebar .sidebar-header {
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.sidebar-logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-color);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.sidebar-logo i {
    background: var(--primary-light);
    padding: 10px;
    border-radius: 12px;
    margin-right: 12px;
    transition: var(--transition);
}

.sidebar-label {
    padding: 15px 20px 5px 20px !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    color: #b0b0b0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    list-style: none;
}

#sidebar ul.components {
    padding: 0 15px;
    transition: var(--transition);
    overflow-y: auto;
    flex: 1;
    margin-bottom: 0;
}

#sidebar ul.components::-webkit-scrollbar {
    width: 6px;
}

#sidebar ul.components::-webkit-scrollbar-track {
    background: transparent;
}

#sidebar ul.components::-webkit-scrollbar-thumb {
    background: rgba(126, 169, 145, 0.2);
    border-radius: 10px;
}

#sidebar ul.components::-webkit-scrollbar-thumb:hover {
    background: rgba(126, 169, 145, 0.4);
}

#sidebar ul li {
    margin-bottom: 2px;
    list-style: none;
}

#sidebar ul li a {
    padding: 10px 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none !important;
    border-radius: 15px;
    font-weight: 500;
    transition: var(--transition);
}

#sidebar ul li a i {
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: var(--text-muted);
    transition: var(--transition);
}

#sidebar ul li a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

#sidebar ul li.active a {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(126, 169, 145, 0.3);
}

#content-area {
    flex: 1;
    width: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin-left: var(--sidebar-width);
    height: 100vh;
    overflow: hidden;
}

#sidebar.active~#content-area {
    margin-left: var(--sidebar-collapsed-width);
}

body:not(.logged-in) #content-area {
    margin-left: 0;
    height: auto;
    overflow: visible;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: var(--transition);
    z-index: 1000;
}

body:not(.logged-in) .navbar {
    background-color: #fff;
    padding: 1.2rem 0;
}

body:not(.logged-in) .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark) !important;
    letter-spacing: -0.5px;
}

body:not(.logged-in) .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.2s;
}

body:not(.logged-in) .nav-link:hover {
    color: var(--primary-dark) !important;
}

body.logged-in .navbar {
    left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
}

body.logged-in #sidebar.active~#content-area .navbar {
    left: var(--sidebar-collapsed-width);
    width: calc(100% - var(--sidebar-collapsed-width));
}

@media (max-width: 991.98px) {
    body.logged-in .navbar {
        left: 0 !important;
        width: 100% !important;
        padding: 1rem;
    }
}

.nav-toggle-btn {
    background: var(--primary-light);
    color: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.main-content {
    padding: 2.5rem 1.5rem;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 70px - 80px);
    padding-top: calc(2.5rem + 70px);
}

body:not(.logged-in) .main-content {
    height: auto;
    overflow: visible;
    padding: 0;
    padding-top: 80px;
    padding-bottom: 100px;
}

body:not(.logged-in) footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}

@media (max-width: 767.98px) {

    h1,
    .h1 {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    h2,
    .h2 {
        font-size: 1.3rem !important;
    }

    h3,
    .h3 {
        font-size: 1.15rem !important;
    }

    h4,
    .h4 {
        font-size: 1.05rem !important;
    }

    h5,
    .h5 {
        font-size: 0.95rem !important;
    }

    p.lead,
    .lead {
        font-size: 0.9rem !important;
    }

    .section-title {
        font-size: 1.4rem !important;
        margin-bottom: 1.8rem !important;
    }

    .section-title::after {
        width: 40px;
        height: 3px;
        bottom: -10px;
    }

    .container,
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .main-content {
        padding: 0.75rem 0.5rem !important;
        padding-top: calc(0.75rem + 60px) !important;
    }

    .card {
        border-radius: 18px !important;
        margin-bottom: 0.75rem !important;
    }

    .card-header {
        padding: 1.1rem 1rem !important;
    }

    .card-body {
        padding: 1.1rem 1rem !important;
    }

    .mb-4,
    .my-4 {
        margin-bottom: 0.75rem !important;
    }

    .form-group {
        margin-bottom: 0.65rem !important;
    }

    label {
        font-size: 0.8rem !important;
        margin-bottom: 0.3rem !important;
    }

    .form-control {
        font-size: 0.85rem !important;
        height: 42px !important;
        min-height: 42px !important;
        padding: 0.4rem 0.75rem !important;
        border-radius: 10px !important;
        border-width: 1.5px !important;
    }

    .custom-control-label {
        font-size: 0.8rem !important;
        line-height: 1.4;
    }

    .form-text,
    .text-muted.small {
        font-size: 0.7rem !important;
        margin-top: 2px;
    }

    .custom-control-inline {
        display: flex !important;
        margin-right: 0 !important;
        margin-bottom: 0.4rem !important;
        padding-left: 1.75rem !important;
    }

    [style*="max-height: 400px"] {
        max-height: 250px !important;
        padding: 10px !important;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
        border-radius: 10px !important;
    }

    .btn-lg {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
        border-radius: 50rem !important;
        width: 100%;
    }

    .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row>[class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }

    .anggota-item {
        padding: 0.85rem !important;
        border-radius: 14px !important;
        margin-bottom: 0.75rem !important;
        border: 1px solid #edf2f0 !important;
    }

    .anggota-item h6 {
        font-size: 0.85rem !important;
    }

    .anggota-item .border-bottom {
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.5rem !important;
    }
}

[style*="overflow-y: auto"]::-webkit-scrollbar {
    width: 4px;
}

[style*="overflow-y: auto"]::-webkit-scrollbar-thumb {
    background: rgba(126, 169, 145, 0.3);
    border-radius: 10px;
}

@media (max-width: 375px) {
    .section-title {
        font-size: 1.25rem !important;
    }

    .card-header h5 {
        font-size: 0.85rem !important;
    }

    .form-control {
        height: 40px !important;
        min-height: 40px !important;
    }
}

.navbar-guest {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 1050;
}

.navbar-guest.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.ls-n1 {
    letter-spacing: -1px;
}

.ls-1 {
    letter-spacing: 1px;
}

.x-small {
    font-size: 0.75rem !important;
}

.xx-small {
    font-size: 0.65rem !important;
}

.bg-milky {
    background-color: rgba(126, 169, 145, 0.08);
}

.scale-hover {
    transition: all 0.3s ease;
}

.scale-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.rounded-xl {
    border-radius: 12px !important;
}

.font-weight-800 {
    font-weight: 800;
}

.navbar-toggler-icon-custom {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler-icon-custom span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-link {
    transition: color 0.3s ease;
    position: relative;
}

@media (min-width: 992px) {
    .navbar-guest .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1rem;
        right: 1rem;
        height: 2px;
        background-color: var(--primary-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .navbar-guest .nav-link:hover::after {
        transform: scaleX(1);
    }
}

.main-content::-webkit-scrollbar-track {
    background: transparent;
}

.main-content::-webkit-scrollbar-thumb {
    background: rgba(126, 169, 145, 0.2);
    border-radius: 10px;
}

.main-content::-webkit-scrollbar-thumb:hover {
    background: rgba(126, 169, 145, 0.4);
}

footer {
    background: transparent;
    z-index: 999;
    width: 100%;
    flex-shrink: 0;
    padding: 1rem 0;
    height: auto;
    transition: var(--transition);
}

.logged-in footer {
    background: transparent !important;
    backdrop-filter: none !important;
    border-top: none !important;
    box-shadow: none !important;
    position: fixed;
    bottom: 0;
    left: var(--sidebar-width);
    right: 0;
    width: calc(100% - var(--sidebar-width));
}

body.logged-in #sidebar.active~#content-area footer {
    left: var(--sidebar-collapsed-width);
    width: calc(100% - var(--sidebar-collapsed-width));
}

body:not(.logged-in) footer {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 5rem !important;
    position: relative;
    z-index: 10;
}

@media (max-width: 991.98px) {
    .navbar-guest .navbar-collapse {
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1.5rem;
        border-bottom: 1px solid #f0f0f0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
    }

    .navbar-guest .nav-item {
        margin-bottom: 0.5rem;
    }

    .navbar-guest .nav-link {
        padding: 0.8rem 1rem !important;
        background: #f8faf9;
        border-radius: 12px;
        margin-bottom: 5px;
    }
}

.x-small {
    font-size: 0.7rem;
}

.card {
    border: none;
    border-radius: 30px;
    box-shadow: var(--shadow);
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.btn {
    border-radius: 16px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(126, 169, 145, 0.2);
}

@media (max-width: 991.98px) {
    #sidebar {
        margin-left: calc(-1 * var(--sidebar-width));
        position: fixed;
        height: 100vh;
        min-width: var(--sidebar-width) !important;
        max-width: var(--sidebar-width) !important;
    }

    #sidebar.active {
        margin-left: 0;
    }

    #sidebar.active .sidebar-header span,
    #sidebar.active ul li a span,
    #sidebar.active ul li p,
    #sidebar.active ul li .d-flex div,
    #sidebar.active .mt-auto .badge {
        display: block;
    }

    #sidebar.active ul li a {
        justify-content: flex-start;
        padding: 14px 20px;
    }

    #sidebar.active ul li a i {
        margin-right: 15px;
    }

    #content-area {
        width: 100%;
        margin-left: 0 !important;
    }

    .sidebar-logo span {
        display: block !important;
    }

    .main-content {
        padding: 1.5rem 1rem;
    }

    body.logged-in .navbar {
        left: 0 !important;
        width: 100% !important;
    }

    body.logged-in footer {
        left: 0 !important;
        width: 100% !important;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.4rem !important;
    }

    .card-header {
        padding: 1rem !important;
    }

    .card-body,
    .anggota-item {
        padding: 1rem !important;
    }

    .btn-lg {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }

    .form-control {
        padding: 0.5rem 0.75rem !important;
        font-size: 16px !important;
    }

    .custom-control-inline {
        display: flex;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.section-title {
    position: relative;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 10px;
}

.form-control {
    border: 2px solid #edf2f0;
    border-radius: 14px;
    padding: 0.7rem 1.2rem;
    height: auto;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fbfdfc;
    min-height: 50px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(126, 169, 145, 0.1);
    background-color: var(--white);
}

label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-sage {
    background-color: var(--primary-color) !important;
    color: white;
}

.bg-milky {
    background-color: var(--primary-light) !important;
    color: var(--primary-dark);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding: 1.8rem 2rem;
}

.card-header h5 {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.2px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.card-header h5 i {
    margin-right: 12px;
    color: var(--primary-color);
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox .custom-control-label::before {
    border-radius: 6px;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.badge-sage {
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 600;
}

#sidebar-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    z-index: 1000;
    transition: var(--transition);
}

#sidebar-overlay.active {
    display: block;
}

@media (min-width: 992px) {
    #sidebar-overlay {
        display: none !important;
    }
}

.btn-soft-primary {
    background-color: rgba(126, 169, 145, 0.1);
    color: var(--primary-color);
    border: none;
    transition: var(--transition);
}

.btn-soft-primary:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(126, 169, 145, 0.2);
}

.btn-soft-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: none;
    transition: var(--transition);
}

.btn-soft-danger:hover {
    background-color: #dc3545;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.rounded-xl {
    border-radius: 15px !important;
}

/* Footer Styles */
.footer-guest {
    background-color: #1a1e21 !important;
    font-family: 'Outfit', sans-serif;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(126, 169, 145, 0.4);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.ls-2 {
    letter-spacing: 2px;
}

.gap-3 {
    gap: 1rem;
}

.grayscale {
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0);
    opacity: 1 !important;
}

.badge-primary-soft {
    background-color: rgba(126, 169, 145, 0.15);
    color: #7ea991;
}

/* Dashboard Components */
.stats-card {
    border-radius: 20px !important;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-sm {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.bg-primary-light {
    background-color: rgba(126, 169, 145, 0.1);
    color: var(--primary-color);
}

.bg-success-light {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.bg-info-light {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.bg-white {
    background-color: #fff !important;
}

.bg-gradient-success {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.custom-table tbody tr {
    transition: all 0.2s;
}

.custom-table tbody tr:hover {
    background-color: #f8f9fa;
}

.hover-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.shimmer-dot,
.shimmer-badge {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.bg-opacity-20 {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-opacity-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.border-opacity-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.xx-small {
    font-size: 0.7rem;
}

.ls-1 {
    letter-spacing: 1px;
}

.uppercase {
    text-transform: uppercase;
}

.rounded-xl {
    border-radius: 15px !important;
}

/* Flatpickr Customization */
.flatpickr-calendar {
    box-shadow: 0 15px 35px rgba(126, 169, 145, 0.2) !important;
    border-radius: 20px !important;
    border: 1px solid #f0f7f3 !important;
    padding: 5px !important;
}

.flatpickr-day.selected {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.flatpickr-months .flatpickr-month {
    color: var(--primary-dark) !important;
    fill: var(--primary-dark) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
}

.datepicker-input {
    cursor: pointer !important;
    background-color: #fbfdfc !important;
}

.datepicker-input:hover {
    border-color: var(--primary-color) !important;
}