body {
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-scroll::-webkit-scrollbar {
    width: 4px;
}

.modal-scroll::-webkit-scrollbar-thumb {
    background: #3b5af1;
    border-radius: 10px;
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    pointer-events: none;
    z-index: -1;
}

.grid-line-light {
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

.dark .grid-line-light {
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.filter-active {
    background-color: #3b5af1 !important;
    color: #ffffff !important;
    border-color: #3b5af1 !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

/* Tooltip specific for Calendar */
.cal-tooltip {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.group:hover .cal-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Animated Filter Buttons */
.anim-btn {
    height: 42px;
    min-width: 140px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.anim-btn span {
    display: block;
    width: 100%;
    text-align: center;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 0;
    transform: translateY(-50%);
}

.btn-text-one {
    top: 50%;
}

.btn-text-two {
    top: 150%;
    color: #ffffff !important;
}

.anim-btn:hover .btn-text-one {
    top: -50%;
}

.anim-btn:hover .btn-text-two {
    top: 50%;
}

.anim-btn:hover {
    background: linear-gradient(to top, #00154c, #12376e, #23487f);
    border-color: transparent !important;
    box-shadow: 0 10px 20px rgba(18, 55, 110, 0.3);
}

.anim-active-btn {
    background: linear-gradient(to top, #00154c, #12376e, #23487f) !important;
    border-color: transparent !important;
    box-shadow: 0 10px 20px rgba(18, 55, 110, 0.4) !important;
}

.anim-active-btn .btn-text-one {
    top: -50%;
}

.anim-active-btn .btn-text-two {
    top: 50%;
}

/* Animated CTA Button (Load More) */
.cta {
    border: none;
    background: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta span {
    padding-bottom: 7px;
    letter-spacing: 4px;
    font-size: 14px;
    padding-right: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.cta svg {
    transform: translateX(-8px);
    transition: all 0.3s ease;
    fill: currentColor;
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active svg {
    transform: scale(0.9);
}

.hover-underline-animation {
    position: relative;
    padding-bottom: 7px;
}

.hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.cta:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}