


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1000;
    overflow: hidden;
  }
  .preloader.hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 1s ease, visibility 1s ease;
    transition: opacity 1s ease, visibility 1s ease;
  }
  .preloader-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 5px;
    background: rgba(113, 112, 112, 0.575);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-animation: expandLine 2s ease-in-out forwards;
            animation: expandLine 2s ease-in-out forwards;
  }
  .preloader-logo {
    width: 195px;
    height: 40px;
    opacity: 0;
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-animation: fadeInLogo 0.5s ease-in-out 1s forwards;
            animation: fadeInLogo 0.5s ease-in-out 1s forwards; /* Appears after 1s */
    z-index: 2;
  }
  .preloader-window {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    background: white;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
   
    z-index: 3;
  }
  @-webkit-keyframes expandLine {
    0% { width: 0; }
    30% { width: 30%; } /* Line reaches 30% width */
    100% { width: 100%; } /* Line expands to full width */
  }
  @keyframes expandLine {
    0% { width: 0; }
    30% { width: 30%; } /* Line reaches 30% width */
    100% { width: 100%; } /* Line expands to full width */
  }
  
  @-webkit-keyframes fadeInLogo {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @keyframes fadeInLogo {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  @-webkit-keyframes expandWindow {
    0% { width: 100%; height: 0; opacity: 1; }
    100% { width: 100%; height: 100%; opacity: 0; } /* Expands and fades out */
  }
  @keyframes expandWindow {
    0% { width: 100%; height: 0; opacity: 1; }
    100% { width: 100%; height: 100%; opacity: 0; } /* Expands and fades out */
  }

#offer {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 350px;
            text-align: center;
            position: relative;
        }
        .progress-bar {
            width: 100%;
            background-color: #e0e0e0;
            border-radius: 5px;
            margin-bottom: 20px;
            position: relative;
        }
        .progress {
            height: 10px;
            background-color: #000;
            border-radius: 5px;
            width: 0%;
            -webkit-transition: width 0.3s ease;
            transition: width 0.3s ease;
        }
        .step {
            display: none;
        }
        .step.active {
            display: block;
        }
  #btn_f {
	-webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
  border: 2px solid #fb802d;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Montserrat' !important;
  font-style: normal;
  text-transform: uppercase;
  padding: 3px 32px;
  border-radius: 30px ;
  background-color: transparent;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  outline: none;

  }
  #btn_f:hover {
    background-color: orange;
  }

#btn_offer{
  font-family: 'Montserrat' !important;
background-color: transparent;
color:#e0e0e0;
border: 1px solid #e0e0e0;
border-radius: 25px;
}
#btn_offer:hover {
    background-color: orange;
  }

        button.filled {
            background-color: #ff0000;
            color: #fff;
            border-color: #ff0000;
        }
        .bonuses {
            margin-top: 20px;
            font-size: 14px;
        }
        .image-frame {
            border: 2px solid #000;
            border-radius: 10px;
            padding: 10px;
            margin-bottom: 20px;
        }
        .image-frame img {
            width: 100%;
            border-radius: 10px;
        }
        .steps-left {
            margin-top: 20px;
            font-size: 14px;
            color: #555;
        }
        .steps-left span {
            font-weight: bold;
        }
        input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #000;
            border-radius: 5px;
            font-size: 16px;
        }
        input:focus {
            outline: none;
            border-color: #ff0000;
        }
       
 .navbar {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      background-color: transparent;
      padding: 20px;
      position: fixed;
      top: 40px;
      width: 100%;
      z-index: 10;
      border-bottom: 1px solid white;

    }

    .navbar a {
      font-family: 'Montserrat' !important;
      color: white;
      margin: 0 15px;
      font-size: 12px;
     display: inline-block;       
      text-decoration: none;
      cursor: pointer;
      position: relative;
    } 
.navbar a:after{
display: block;
content: "";
background-color: white;
left: 0;  
height: 2px;  
position: absolute;
-webkit-transition: width 0.3s ease-out;
transition: width 0.3s ease-out; /*задаём время анимации*/
 
}
.navbar a:hover:after,
.navbar a:focus:after {
width: 100%;
}

 .nvbar {
  
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      background-color: transparent;
      padding: 20px;
      position: fixed;
      top: 40px;
      width: 100%;
      z-index: 10;
      border-bottom: 1px solid darkgrey;

    }

    .nvbar a {
      font-family: 'Montserrat' !important;
      color: black;
      margin: 0 15px;
      font-size: 12px;
     display: inline-block;       
      text-decoration: none;
      cursor: pointer;
      position: relative;
    } 
.nvbar a:after{
display: block;
content: "";
background-color: #282828;
left: 0;  
height: 2px;  
position: absolute;
-webkit-transition: width 0.3s ease-out;
transition: width 0.3s ease-out; /*задаём время анимации*/
 
}
.nvbar a:hover:after,
.nvbar a:focus:after {
width: 100%;
}

    

    .logo {
      text-align: center;
      margin: 10px 0;
      position: fixed;
      top: 10px;
      width: 100%;
      z-index: 10;
      background-color: transparent;
      border: none;
    }
.main-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
  
  }
  .slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  }
  .slide {
    min-width: 100vw;
    height: 100vh;
    background-color: #ccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2em;
    color: #333;
    position: relative;
  }
  .slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slide-title {
    font-family: 'Montserrat' !important;
    position: absolute;
    text-align: center;
    top: 35%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: white;
    font-size: 1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
    
.image-counter {
  position: absolute;
       top:30px;
      left: 50%;
      -webkit-transform: translate(-50%);
              transform: translate(-50%);
     
    color: white;
    font-family: 'Montserrat' !important;
    font-size: 1.2em;
    padding: 5px 10px;
     z-index: 10;
    
    font-family: monospace; /* Ensures consistent width for numbers */
  }

   .preview-container {
    position: fixed;
    right: 0px;
    top: 0;
    width: 200px;
    height: 100px;
    overflow: hidden;
    z-index: 3;
  }
  .preview-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 1s ease-in-out;
    transition: -webkit-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  }
  .preview-slide {
    min-width: 200px;
    height:100px;
    background-color: rgba(0, 0, 0, 0.5);
    
    overflow: hidden;
  }
  .preview-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

    .scroll-buttons {
      position: absolute;
      bottom: 100px;
      left: 50%;
      -webkit-transform: translate(-50%);
              transform: translate(-50%);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      z-index: 10;
      /* Ensure it's above the slider */
    }

    .scroll-buttons button {
      background-color: transparent;
      border: 1px solid white;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      margin: 25px;
      cursor: pointer;
      color: white;
    }
     .scroll-buttons button:hover {
background-color: orange;
     }

    .book-button {
      font-family: 'Montserrat' !important;
      position: relative;
      bottom: 50px;
      margin: 0;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background-color: transparent;
      color: white;
      border: 1px solid white;
      border-radius: 30px;
      padding: 5px 20px;
      cursor: pointer;
      z-index: 10;
      /* Ensure it's above the slider */
    }

    .book-button:hover {
      background-color: orange;
    }

    .center-button {

      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background-color: transparent;
      border: 1px solid white;
      border-radius: 50%;
      width: 55px;
      height: 55px;
      font-size: 12px;
      cursor: pointer;
      color: white;
      z-index: 10;
    }

.center-button:hover{ 
  background-color: orange;
  }

    .menu-toggle {
      display: none;
      position: fixed;
      right: 10px;
      background-color: transparent;
      border: none;
      width: 52px;
      height: 52px;
      cursor: pointer;
      z-index: 1000;
      font-size: 52px;
      -webkit-transition: left 0.3s ease, -webkit-transform 0.3s ease;
      transition: left 0.3s ease, -webkit-transform 0.3s ease;
      transition: transform 0.3s ease, left 0.3s ease;
      transition: transform 0.3s ease, left 0.3s ease, -webkit-transform 0.3s ease;
      color: white;
      top: -15px;
    }

    .menu-toggle.active {
      top: 20px;
      left: auto;
      right: 20px;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg);
    }
    .menu {
      display: none;
      position: fixed;
      right: 10px;
      background-color: transparent;
      border: none;
      width: 52px;
      height: 52px;
      cursor: pointer;
      z-index: 1000;
      font-size: 52px;
      -webkit-transition: left 0.3s ease, -webkit-transform 0.3s ease;
      transition: left 0.3s ease, -webkit-transform 0.3s ease;
      transition: transform 0.3s ease, left 0.3s ease;
      transition: transform 0.3s ease, left 0.3s ease, -webkit-transform 0.3s ease;
      color: black;
      top: -15px;
    }

    .menu.active {
      top: 20px;
      left: auto;
      right: 20px;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg);
    }

    .off-canvas-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: #333;
      -webkit-transition: left 0.3s ease-in-out;
      transition: left 0.3s ease-in-out;
      z-index: 999;
      padding-top: 80px;
    }

    .off-canvas-menu.open {
      left: 0;

    }

    .off-canvas-menu a {
      font-family: 'Montserrat' !important;
      display: block;
      color: white;
      padding: 15px;
      text-decoration: none;
    }

.off-canvas-menu a:after{
display: block;
content: "";
background-color: white;
left: 0;  
height: 2px;  
position: absolute;
-webkit-transition: width 0.3s ease-out;
transition: width 0.3s ease-out; /*задаём время анимации*/
 
}
.off-canvas-menu a:hover:after,
.off-canvas-menu a:focus:after {
width: 40%;
left:30%;
}
 .off-canvas {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: #333;
      -webkit-transition: left 0.3s ease-in-out;
      transition: left 0.3s ease-in-out;
      z-index: 999;
      padding-top: 80px;
    }

    .off-canvas.open {
      left: 0;

    }

    .off-canvas a {
      font-family: 'Montserrat' !important;
      display: block;
      color: white;
      padding: 15px;
      text-decoration: none;
    }

.off-canvas a:after{
display: block;
content: "";
background-color: white;
left: 0;  
height: 2px;  
position: absolute;
-webkit-transition: width 0.3s ease-out;
transition: width 0.3s ease-out; /*задаём время анимации*/
 
}
.off-canvas a:hover:after,
.off-canvas-menu a:focus:after {
width: 40%;
left:30%;
}


    @media (max-width: 768px) {
      .preview-container {
        display: none;
      }

      .logo {
        border-bottom: 1px solid white;
      }

      .scroll-buttons {
        top: 80%;
      }

      .book-button {
        top: 90%;
      }

      .navbar {
        display: none !important;

      }
       .nvbar {
        display: none !important;

      }
 .menu-toggle {
        display: block;
      }
      .menu {
        display: block;
      }
    }


    .contact-button {
   
      background-color: transparent;
      color: white;
      border: 1px solid white;
      border-radius: 30px;
      padding: 5px 20px;
      cursor: pointer;
      z-index: 10;
      /* Ensure it's above the slider */
}
.contact-button:hover { background-color: orange;}
#sect1 {
    position: relative;
    top: 100px;
}
#btn_b {
	-webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
  border: 1px solid black;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Montserrat' !important;
  font-style: normal;
  text-transform: uppercase;
  padding: 3px 32px;
  border-radius: 30px ;
  background-color: transparent;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  outline: none;

  }
  #btn_b:hover {
    background-color: orange;
  }
  .style1 {
    position: relative;
    top: 100px;
}
  .style2 {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
/* Основной контейнер для модального окна */
        .chat-modal {
            display:none; /* Скрываем по умолчанию */
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 300px;
            background-color: transparent;
            border-radius: 10px;
            -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            -webkit-animation: slideIn 0.5s ease-out;
                    animation: slideIn 0.5s ease-out;
                    height: 440px;
                    top: auto;
                    left: auto;
        }

        /* Анимация появления */
        @-webkit-keyframes slideIn {
            from {
                -webkit-transform: translateY(100%);
                        transform: translateY(100%);
                opacity: 0;
            }
            to {
                -webkit-transform: translateY(0);
                        transform: translateY(0);
                opacity: 1;
            }
        }
        @keyframes slideIn {
            from {
                -webkit-transform: translateY(100%);
                        transform: translateY(100%);
                opacity: 0;
            }
            to {
                -webkit-transform: translateY(0);
                        transform: translateY(0);
                opacity: 1;
            }
        }

        /* Заголовок модального окна */
        .chat-header {
            height:50px;
            background-color: transparent;
            color: black;
            padding: 10px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
        }

        /* Кнопка закрытия */
        .close-btn {
            background: none;
            margin-bottom: 5px;
            border: 1px solid white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 15px;
            cursor: pointer;
            position: absolute;
      
        }
        .close-btn:hover{
          background-color: orange;

        }

        /* Контейнер для чата */
        #chat-box {
          background-color:#333;
            height: 300px;
            padding: 10px;
            overflow-y: auto;
            border: 1px solid #ddd;
            border-radius: 10px;
        }

        /* Поле ввода и кнопка отправки */
        .chat-input-container {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            padding: 10px;
        }

        #user-input {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            z-index: 1000;
        }

        .chat-input-container button {
          position: relative;
       background: none;
       left: 10px;
       top: 10px;
            border: 1px solid white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 15px;
            cursor: pointer;
        }

        .chat-input-container button:hover {
            background-color: orange;
        }

        /* Сообщения */
        .message {
            margin: 5px 0;
            padding: 8px;
            border-radius: 5px;
        }

        .user {
      background-color: #fff;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
              z-index: 1000;
    }

    .bot {
      background-color:transparent;
      color: white;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
              z-index: 1000;
    }
    .admin-avatar {
      width: 70px;
      /* Размер аватарки */
      height: 15px;
      margin-right: 5px;
      /* Отступ от текста */
      -o-object-fit: cover;
         object-fit: cover;
      /* Сохраняет пропорции изображения */
       
    }


        /* Форма регистрации */
        .registration-form {
            display: none;
            padding: 10px;
             position: fixed;
            width: 300px;
            height: 200px;
            top: 20px;
            left: 20px;
        }

        .registration-form input {
            
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .registration-form button {
          font-family: 'Montserrat' !important;
          background-color: transparent;
      color: white;
      border: 1px solid white;
      border-radius: 30px;
      padding: 4px 20px;
      cursor: pointer;
      z-index: 10;
      /* Ensure it's above the slider */
        }

        .registration-form button:hover {
            background-color: orange;
        }

 
.btn_telegram{
            background: none;
            border: 1px solid white;
            width:40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
                    position: fixed;
                    top: 20px;
                    left: 20px;
                    -webkit-box-pack: center;
                        -ms-flex-pack: center;
                            justify-content: center;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
       
}

 .btn_telegram:hover{
          background-color: orange;
      color: white;
        }
@media (max-width: 768px) {

.btn_telegram {
        position: fixed;
        top: 10px;
        left: 10px;
    }
}
 
.telegram{
    position: fixed;
    left:30px;
    top: 30px;
   -webkit-animation: rotate 2s linear infinite;
           animation: rotate 2s linear infinite; /* Анимация вращения */
}

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

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


@media (max-width: 768px) {
 .telegram{
    position: fixed;
    left: 20px;
    top: 20px;
   -webkit-animation: rotate 2s linear infinite;
           animation: rotate 2s linear infinite; /* Анимация вращения */
}

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

 /* Кнопка закрытия */
        .reg-btn {
            background: none;
            margin-bottom: 5px;
            border: 1px solid white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 15px;
            cursor: pointer;
            position: absolute;
            right: 20px;
      
        }
        .reg-btn:hover{
          background-color: orange;

        }
    
    .font {
            position: relative;
            text-align: center;
        }
        
        .font i{
            position: absolute;
            left: 15px;
            top: 10px;
            color: gray;
        }
        
      
/* Оверлей */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

   /* General Styles */
        .container-fluid {
            margin-top: 100px;
        }

        .calendar {
            max-width: 1920px;
            background-color: #fff;

        }

        .calendar-header {
            text-align: center;
            font-size: 24px;
            font-weight: bold;

        }

        /* Week Navigation (Desktop) */
        .week-navigation {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            margin-bottom: 20px;
        }

        .week-navigation button {
            padding: 5px 20px;
            font-size: 16px;
            background-color: transparent;
            color: #007bff;
            border: 0px solid #007bff;
            border-radius: 10px;
            cursor: pointer;
            font-family: 'Roboto', Arial, sans-serif;
            font-weight: 500;
            -webkit-transition: background-color 0.3s, color 0.3s;
            transition: background-color 0.3s, color 0.3s;
        }

        .week-navigation button:hover {
            background-color: #007bff;
            color: #fff;

        }

        /* Days Grid (Desktop) */
        .weekdays {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: distribute;
                justify-content: space-around;

            border: 1px solid #ddd;
        }

        .weekday {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            text-align: center;
            font-size: 14px;
            color: #333;


        }

        /* Mobile Day Switcher */
        .mobile-days {
            display: none;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            /* Changed to horizontal row */
            overflow-x: auto;
            /* Enable horizontal scrolling if needed */
            margin-bottom: 20px;
            background-color: #f9f9f9;
            padding: 10px;
            border-radius: 5px;
        }

        .mobile-day {
            -webkit-box-flex: 0;
                -ms-flex: 0 0 auto;
                    flex: 0 0 auto;
            /* Prevent flex items from shrinking */
            padding: 5px 5px;
            text-align: center;
            cursor: pointer;
            font-size: 12px;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            /* Add separator between days */
            width: calc(100% / 7);
        }

        .mobile-day:last-child {
            border-right: none;
            /* Remove separator for the last day */
        }

        .mobile-day.active {
            background-color: #2196f3;
            color: #fff;
            border-radius: 5px;
        }

        /* Events Grid (Desktop) */
        .events-grid {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            margin-top: 5px;
        }



        .events {

            -webkit-box-flex: 1;

                -ms-flex: 1;

                    flex: 1;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            position: relative;
            height: 960px;
            background-color: #fff;
            border-top: 1px solid #ddd;

        }

        .day-column {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            position: relative;
            border-right: 1px solid #ddd;
        }

        .day-column.disabled {
            background-color: #f0f0f0;
        }

        .mobile-day.disabled {
            color: #999;
            cursor: not-allowed;
            background-color: #f0f0f0;
        }


        .event {
            margin-bottom: 10px;
            padding: 10px;
            background-color: #fff;

            width: 100%;
            position: absolute;
            -webkit-box-sizing: border-box;
                    box-sizing: border-box;
            overflow: hidden;
            font-size: 12px;
            text-align: center;
            font-family: 'Roboto', Arial, sans-serif;
            color: #333;
            cursor: pointer;
            border-bottom: 1px solid #ddd;
            border-top: 1px solid #ddd;

        }

        .event:hover {
            background-color: #ddd;
        }

        .event.disabled {

            display: none;
            cursor: not-allowed;
        }


        /* Mobile Events List */
        .mobile-events {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            display: none;
            padding: 10px;
        }

        .mobile-event {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            width: 100%;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            cursor: pointer;
        }

        .mobile-event:hover {
            background-color: #e3f2fd;
        }

        .mobile-event.disabled {
            background-color: #f0f0f0;
            border-left-color: #999;
            color: #999;
        }


        /* Responsive Adjustments */
        @media (max-width: 768px) {

            .weekdays,
            .events-grid {
                display: none !important;
            }

            .mobile-days,
            .mobile-events {
                display: -webkit-box !important;
                display: -ms-flexbox !important;
                display: flex !important;
                /* Use flex for mobile-days */
            }
        }
 
 
