:root {
    --primary-color: #0076a8;
    --primary-dark-color: #00567a;
    --black-text: #121b26;
}
.noDecoration {
    text-decoration: none;
}
body {
    font-family: "SF Pro Display", sans-serif;
    color: var(--black-text);
}
.mainNav {
    transition: background-color 0.3s ease-in-out;
}

.mainNav.scrolled {
    background-color: white !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.padding-container {
    padding-top: 100px !important;
}
.btn-primary {
    background-color: #006691 !important;
    border-color: #f2f2f2 !important;
}
.bodyContainer {
    padding-top: 70px;
}
.row {
    --bs-gutter-x: 0;
}
.loginPage {
    height: 100vh;
}
.inboarding {
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
}
.loginSideImage,
.loginSideImage img {
    height: 100%;
}
@media (max-width:641px)  { 
}
@media (max-width:961px)  { 
    .loginSideImage {
        display: none;
    } 
}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }
.logoUpToBG {
    display: none;
    position: fixed;
    top: calc(50% - 75px);
    left: calc(25% - 150px);
    height: 150px !important;
}
.loginContent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.inboardingWelcome p {
    padding-top: 35px;
    padding-bottom: 54px;
    font-size: 17px;
}
.loginButton {
    font-size: 17px;
    width: 380px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--primary-color);
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
}

.loginButton:hover {
    background-color: var(--primary-dark-color);
    transition: all 250ms;
}

.loginDev h1 {
    font-weight: 700;
    font-size: 27px;
    line-height: 22px;
    padding-bottom: 18px;
}
.loginDev h3 {
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
    padding-bottom: 43px;
}
.loginDev .inputDiv {
    padding-bottom: 16px;
}
.rememberDiv {
    padding-bottom: 31px;
}
.rememberDiv .col-6:last-child {
    text-align: right;
}
.rememberDiv .col-6:last-child a {
    font-weight: 400;
    font-size: 15px;
    color: var(--primary-color);
    line-height: 20px;
}
.newAccount {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}
.newAccount a {
    color: var(--primary-color);
    text-decoration: none;
}
.guestLink {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #281e27;
    text-decoration: none;
}

.verifyDev h1 {
    font-weight: 700;
    font-size: 28px;
    padding-bottom: 12px;
}
.verifyDev h3 {
    font-weight: 400;
    font-size: 15px;
    padding-bottom: 90px;
}
.otpInput {
    width: 71px;
    height: 71px;
    text-align: center;
    font-size: 24px;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #ced4da;
    margin-left: 14px;
    margin-right: 14px;
}
.resendOtp {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}
.resendOtp a {
    color: var(--primary-color);
    text-decoration: none;
}
#timer {
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 500;
}

.gender-container {
    display: flex;
    gap: 10px;
}

.gender-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 100px;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    padding: 10px;
    background-color: #fff;
}

.gender-option input {
    display: none;
}

.gender-option img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.gender-option label {
    font-size: 16px;
    color: #666;
    font-weight: bold;
}

/* Selected state */
.gender-option input:checked + label {
    color: var(--primary-color);
}

.gender-option input:checked + label img {
    filter: hue-rotate(190deg);
}

.gender-option input:checked + label {
    color: var(--primary-color);
}

.gender-option:has(input:checked) {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/***********************************************************/
.mainNav {
    padding-left: 75px;
    padding-right: 75px;
    /* border-bottom: 1px solid var(--primary-color); */
    position: fixed;
    width: 100%;
    background-color: unset !important;
}
.searchIcon {
    border: none;
    border-left: 1px solid #dadada;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    border-radius: 78px;
    background-color: white;
}
.searchInput {
    border: none;
    border-right: 1px solid #dadada;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    border-radius: 78px;
    padding-left: 0;
}
.searchInput:focus {
    outline: none;
    box-shadow: none;
    border-color: #dadada;
}
.nav-item {
    padding-right: 15px;
    padding-left: 15px;
}
.navFirst {
    padding-left: 30px;
}
.nav-link {
    color: #281e27 !important;
}
.active {
    color: var(--primary-color) !important;
    font-weight: bolder;
}

.heroSection {
    height: 750px;
    background-color: #c8dce4;
    background-image: url("images/hero-vector.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 60%;
}
.heroDiv {
    height: 100%;
}
.heroText {
    position: relative;
    top: 25%;
    left: 15%;
}
.heroText h1 {
    font-size: 50px;
    margin-top: 47px;
}
.heroText p {
    width: 40%;
    font-size: 16px;
    margin-bottom: 46px;
}
.heroText .facts {
    width: 40%;
}
.heroText .facts .col-4 {
    margin-top: 15px;
}
.heroText .facts h3 {
    font-size: 46px;
    font-weight: bolder;
    margin-bottom: 0;
}
.heroText .facts p {
    font-size: 13px;
    width: unset;
}
.coachSection {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 180px;
}
.cardsRow {
    width: 100%;
    margin-top: -180px;
}
.cardsRow .col-8:first-child {
    direction: rtl;
}
.card1 {
    position: absolute;
    border-radius: 16px;
}

.card1 .cardContent {
    position: relative;
    top: -90px;
    text-align: left;
    padding-left: 50px;
}

.card1 .cardContent h4,
.customCardContent h4 {
    position: relative;
    font-weight: 700;
    font-size: 34px;
    color: #fff;
    padding-left: 20px; /* Space for the circle */
}
.customCardContent h4 {
    font-size: 42px;
}

.card1 .cardContent h4::before,
.customCardContent h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.card2 {
    border-radius: 16px;
}

.card2 .cardContent {
    position: relative;
    top: -200px;
    text-align: left;
    padding-left: 50px;
}

.card2 .cardContent h4 {
    position: relative;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    padding-left: 20px; /* Space for the circle */
}

.card2 .cardContent h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 5px;
}
.card3 {
    border-radius: 16px;
}
.secondCard {
    display: flex;
    justify-content: space-evenly;
}
.secondCard .cardDiv {
    display: inline-block;
}
.secondCard .card {
    padding: 0;
    width: 559px;
    border: 1.35px solid #e7ebf4a3;
    border-radius: 21px;
}
.secondCard .card-header {
    border: none;
}

.cardBG {
    width: 559px;
    height: 280px;
    color: #fff;
    background-image: url(images/my-club.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 100.5% 100%;
}

.cardStatistics {
    display: flex;
    justify-content: space-around;
}
.modalProfile {
    width: 706px;
    height: 580px;
    border-radius: 30px;
}
.modalBG {
    background-image: url(images/modalBG.png);
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: initial;
}
.card-custom {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    color: white;
    backdrop-filter: blur(10px);
}
.progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
}
.progress-circle svg {
    /* transform: rotate(-90deg); */
}
.progress-circle text {
    font-size: 18px;
    font-weight: bold;
    fill: white;
}

.product-card {
    border: 2px solid #007bff;
    border-radius: 10px;
    overflow: hidden;
}
.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.product-card .card-body {
    text-align: center;
    font-weight: bold;
}

/***************************************************/
/******************BOOKING STYLE********************/
/***************************************************/
.navbar {
    border-bottom: 1px solid #ddd;
}

.calendar-container-header {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-tab {
    border-radius: 20px;
}

.no-booking {
    text-align: center;
    margin-top: 40px;
}

.date-picker-container {
    padding: 20px;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.date-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.calendar-container {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    padding: 10px 0;
}

.calendar-container::-webkit-scrollbar {
    display: none;
}

.calendar {
    display: flex;
    gap: 10px;
}

.day-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.day-label {
    font-size: 12px;
    /* color: #6c757d; */
    margin-bottom: 5px;
}

.day-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
    color: #6c757d;
}

.day-circle.active {
    background-color: #0076a8;
    color: white !important;;
}

.buttons-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.buttons-container button {
    flex: 1;
    border-radius: 10px;
}

.checkbox-wrapper-51 input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.checkbox-wrapper-51 .toggle {
    position: relative;
    display: block;
    width: 42px;
    height: 24px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-51 .toggle:before {
    content: "";
    position: relative;
    top: 1px;
    left: 1px;
    width: 40px;
    height: 22px;
    display: block;
    background: #c8ccd4;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.checkbox-wrapper-51 .toggle span {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    display: block;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(154, 153, 153, 0.75);
    transition: all 0.2s ease;
}

.checkbox-wrapper-51 .toggle span svg {
    margin: 7px;
    fill: none;
}

.checkbox-wrapper-51 .toggle span svg path {
    stroke: #c8ccd4;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 24;
    stroke-dashoffset: 0;
    transition: all 0.5s linear;
}

.checkbox-wrapper-51 input[type="checkbox"]:checked + .toggle:before {
    background: #1175c7;
}

.checkbox-wrapper-51 input[type="checkbox"]:checked + .toggle span {
    transform: translateX(18px);
}

.checkbox-wrapper-51 input[type="checkbox"]:checked + .toggle span path {
    stroke: #000000;
    stroke-dasharray: 25;
    stroke-dashoffset: 25;
}

.mygap {
    gap: 30%;
}

.dividor_height {
    height: 400px;
    width: 2px;
    background: rgba(150, 150, 150, 0.5);
    margin: 0 40px;
}

.pop-up {
    position: fixed;
    height: 100vh;
    width: 100vw;
    backdrop-filter: blur(2px);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pop-up .card {
    background: rgb(233, 233, 233);
    padding: 20px;
}

.pop-up .card .card-title {
    font-size: 30px;
    font-weight: 700;
}

.pop-up .card .card-body .card {
    background: white;
    margin: 10px 0;
    padding: 20px;
    width: 100%;
    cursor: pointer;
}

.left-side {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.left-side > img {
    height: 24px;
    width: 24px;
    background: rgb(150, 150, 150);
}

.up-title {
    font-weight: 600;
}

.down-title {
    font-size: 10px;
    color: #a3a3a3;
}

.right-side {
}

@media screen and (max-width: 1024px) {
    .mygap {
        gap: 0;
    }

    .dividor {
        height: 1px;
        width: 100%;
        background: rgba(150, 150, 150, 0.5);
    }

    .dividor_height {
        display: none;
    }
}
/***************************************************/
/******************BOOKING STYLE********************/
/***************************************************/

/***************************************************/
/****************CLASS DETAIL STYLE*****************/
/***************************************************/

.main-image {
    width: fit-content;
    height: 450px;
    object-fit: cover;
    border-radius: 15%;
}

.thumbnail {
    width: fit-content;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #ddd;
    transition: all 0.3s;
}

.thumbnail:hover {
    border-color: #007bff;
}

.scroll-container {
    height: 450px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.progress-container {
    position: relative;
    width: 100px;
    height: 100px;
}

.progress-ring {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease-in-out;
}

.progress-background {
    stroke: #e0e0e0;
}

.progress-bar {
    stroke: #36d399;
}

.progress-text {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
}

.progress-label {
    font-size: 12px;
    fill: #666;
}

/***************************************************/
/****************CLASS DETAIL STYLE*****************/
/***************************************************/

/***************************************************/
/**************PERSONAL TRAINER STYLE***************/
/***************************************************/
.back-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    margin-bottom: 50px;
    margin-right: 50px;
}

.back-btn svg {
    margin-right: 5px;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.7);
    z-index: 1;
}

.card-title {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 4;
}

.buy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 4;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 400px;
    width: 100%;
    z-index: 3;
    background: linear-gradient(
        to bottom,
        rgba(0, 150, 230, 0.5),
        rgba(255, 255, 255, 0)
    );
}
/***************************************************/
/**************PERSONAL TRAINER STYLE***************/
/***************************************************/

/***************************************************/
/******************WORKOUT STYLE********************/
/***************************************************/
.search-bar {
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 20px 0;
}
.search-bar input {
    width: 100%;
    padding: 10px 40px;
    border-radius: 25px;
    border: 1px solid #ccc;
    outline: none;
}
.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}

.program-card:hover {
    transform: scale(1.03);
}
.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.program-info {
    padding: 15px;
}
.badge {
    font-size: 0.9rem;
}
.duration {
    color: #6c757d;
    font-size: 0.9rem;
}
.btn-custom {
    background-color: #f8f9fa;
    color: #6c757d;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
}
.btn-custom.active {
    background-color: #007bff;
    color: white;
}
.btn-custom:hover {
    background-color: #e2e6ea;
    color: #6c757d;
}
/***************************************************/
/******************WORKOUT STYLE********************/
/***************************************************/

/***************************************************/
/*****************PROGRAMS STYLE********************/
/***************************************************/
.bg-light {
    background-color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 15px;
}
/***************************************************/
/*****************PROGRAMS STYLE********************/
/***************************************************/

/***************************************************/
/**************WORKOUT DETAILS STYLE****************/
/***************************************************/
.breadcrumb a {
  text-decoration: none;
  color: #0d6efd;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.card {
  border: none;
  border-radius: 15px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 70%;
  background: #000;
  /*justify-content: ;*/
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/***************************************************/
/**************WORKOUT DETAILS STYLE****************/
/***************************************************/

/***************************************************/
/****************USER SETTINGS STYLE****************/
/***************************************************/
.profile-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.membership-status {
    font-size: 14px;
    margin-top: 5px;
    color: red;
}
.progress-bar {
    background-color: #28a745 !important;
}
.settings-card, .general-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.setting-item, .general-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    margin-bottom: 10px;
    cursor: pointer;
}
.logout-btn {
    background-color: transparent;
    color: #007bff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
}
.image-overlay {
    position: absolute;
    top: 0;
    left:0;
    height: 230px;
    width: 100%;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(0,150,230,0.5),rgba(255,255,255,0));
}
.passcode-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%; /* Make it a circle */
    border: 2px solid #007bff;
    outline: none;
    transition: 0.2s ease-in-out;
}

.passcode-input:focus {
    border-color: #0056b3;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* Ensure the passcode inputs are centered */
.modal-body .d-flex {
    justify-content: center;
}
/***************************************************/
/****************USER SETTINGS STYLE****************/
/***************************************************/

/***************************************************/
/***************PROGRAM WORKOUT STYLE***************/
/***************************************************/
.hero-image {
    width: 100%;
    height: 400px;
    background: url('images/image 72.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.goal-section2,
.workout-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.progress-text {
    color: green;
    font-weight: bold;
}

.dividor {
    width: 100%;
    height: 2px;
    margin: 30px 0;
    background: rgba(150, 150, 150, 0.5)
}

.progress-box {
    width: 60%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;

}

.exercise-box {
    width: 50%;

    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    margin-left: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: black
}

.exercise-box img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
}

.progress-text {
    font-weight: bold;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    width: 100vw;
    height: 100vh;
    overflow-y: scroll
}

.close {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 20px;
    background: crimson;
    color: white;
    cursor: pointer;
    border-radius: 25%
}
/***************************************************/
/***************PROGRAM WORKOUT STYLE***************/
/***************************************************/

/***************************************************/
/****************GROUP CLASSES STYLE****************/
/***************************************************/
.back-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.back-btn svg {
    margin-right: 8px;
}

.search-bar {
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 20px 0;

}

.search-bar input {
    width: 100%;
    padding: 10px 40px;
    border-radius: 25px;
    border: 1px solid #ccc;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}

.card-custom {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.card-custom img {
    width: 15%;
    object-fit: cover;
    filter: brightness(0.8);
    z-index: 1;
}

.card-info {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 4;
}

.person-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 4;
}

.card-body {
    padding: 15px;
}

.class-time {
    font-size: 14px;
    color: gray;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 280px;
    width: 100%;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(0, 150, 230, 0.5), rgba(255, 255, 255, 0));
}
.date-picker-container {
    padding: 20px;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.date-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.calendar-container {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    padding: 10px 0;
}

.calendar-container::-webkit-scrollbar {
    display: none;
}

.calendar {
    display: flex;
    gap: 10px;
}

.day-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.day-label {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
}
.card-link {
    text-decoration: none;
    color: inherit;
}
/***************************************************/
/****************GROUP CLASSES STYLE****************/
/***************************************************/
