* {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }
        
        html {
            overflow-x: hidden;
        }

        html, body {
            margin: 0;
            padding-top: 40px;
            background-image: url('app/img/fondo_home.jpg');
            background-size: cover;
            background-attachment: scroll;  /* 'fixed' causa doble scroll en algunos navegadores */
            background-position: center top;
            overflow-x: hidden;
            width: 100%;
        }
        a {
            color:#856442;
            font-weight:700;
        }
        a:hover {
          color: #856443;
          font-weight:700;
        }
        fa{
            color:#000;
        }
        .container_dos{
            width: 95%;
            margin: 0 auto;
            overflow-x: hidden;
        }
        .hamburger {
          color: #000 !important;
        }
        .main-container {
          display: flex;
          flex-wrap: wrap;
          padding: 1rem 2rem;
          justify-content: space-between;
          align-items: flex-start;
        }
        
        .left-panel, .center-panel, .right-panel {
          flex: 1 1 30%;
          padding: 1rem;
          min-width: 0;
          display: flex;
          flex-direction: column;
        }
    
        .profile-img {
          max-width: 100%;
          border-radius: 1rem;
        }
        .cta-button {
          background-color: #223b9d;
          color: #fff;
          padding: 0.7rem 1.5rem;
          border: none;
          border-radius: 25px;
          font-weight: bold;
          cursor: pointer;
        }
        
        .rotary-background {
            position: relative;
            min-height: 400px; /* Ajusta esta altura según lo necesites */
        }
        
        .rotary-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://jptomsholding.com/app/img/fondo_ana.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            z-index: -1;
            animation: rotateBackground 5s ease-out forwards;
        }
        
        @keyframes rotateBackground {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(720deg);
            }
        }
    
        .effectiveness, .voice-waveform, .vendors, .circle-chart, .info-block {
          background: #fff;
          padding: 1rem;
          border-radius: 1rem;
          box-shadow: 0 0 10px rgba(0,0,0,0.1);
          margin-bottom: 1rem;
        }
    
        .section-title {
          font-weight: bold;
          margin-bottom: 0.5rem;
        }
    
        .vendor-list img {
          width: 40px;
          border-radius: 50%;
          margin-right: 0.5rem;
        }
    
        .custom-whatsapp {
          position: fixed;
          bottom: 20px;
          right: 20px;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          z-index: 100;
          display: flex;
          justify-content: center;
          align-items: center;
          background-color: #fff;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
          text-decoration: none;
        }
    
        .custom-whatsapp .agent-avatar {
          width: 100%;
          height: 100%;
          border-radius: 50%;
          object-fit: cover;
        }
    
        .custom-whatsapp .whatsapp-icon {
          position: absolute;
          bottom: -4px;
          right: -4px;
          width: 24px;
          height: 24px;
          border-radius: 50%;
          background-color: #25D366;
          padding: 2px;
          box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        
       .voice-waveform.investor-results {
              background: #ffffff;
              border: 1px solid #e0e0e0;
              border-radius: 12px;
              padding: 25px;
              margin: 30px 0;
              box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
              font-family: 'Segoe UI', sans-serif;
        }
        
        .voice-waveform.investor-results .section-title {
          font-size: 1.5em;
          font-weight: bold;
          margin-bottom: 15px;
          color: #2c3e50;
        }
        
        .voice-waveform.investor-results ul {
          list-style: disc;
          margin-left: 20px;
          margin-bottom: 20px;
        }
        
        .voice-waveform.investor-results h5 {
          margin-top: 25px;
          font-size: 1.2em;
          color: #2c3e50;
        }
        
        .investment-table {
          width: 100%;
          border-collapse: collapse;
          margin-top: 10px;
        }
        
        .investment-table th,
        .investment-table td {
          border: 1px solid #ccc;
          padding: 10px;
          text-align: center;
        }
        
        .investment-table th {
          background-color: #f8f8f8;
          font-weight: bold;
        }
        /*####### chat ana ######## */
        .chat-wrapper {
          background: #fff;
          width: 100%;
          max-width: 600px;
          border-radius: 16px;
          box-shadow: 0 4px 20px rgba(0,0,0,0.1);
          padding: 16px;
        }
    
        .chat-input-container {
          display: flex;
          flex-direction: row !important;
          align-items: center;
          gap: 8px;
          border: 7px solid #DCD7DE;
          border-radius: 999px;
          padding: 8px 8px;
          background-color: #f9f9f9;
          flex-wrap: nowrap !important;
          max-width: 70%;
          width: 450px;
          box-sizing: border-box;
        }
    
        .chat-input-container input[type="text"] {
          flex: 1 1 auto;
          min-width: 0;
          border: none;
          outline: none;
          padding: 10px;
          font-size: 16px;
          background-color: transparent;
          width: 0;
        }
    
        .chat-input-container button {
          background-color: #a4a3a4;
          border: none;
          color: white;
          padding: 8px 10px;
          border-radius: 50%;
          cursor: pointer;
          transition: background-color 0.2s;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
        }
    
        .chat-input-container button:hover {
          background-color: #670078 !important;
          color: #fff !important;
        }
    
        .mic-btn {
          background-color: #e0e0e0;
          color: #333;
        }
    
        .mic-btn:hover {
          background-color: #d4d4d4;
        }
    
        @media (max-width: 480px) {
          .chat-input-container {
            padding: 6px 10px;
            gap: 6px;
          }
    
          .chat-input-container input[type="text"] {
            font-size: 14px;
            padding: 8px;
          }
    
          .chat-input-container button {
            padding: 8px 10px;
          }
        }
        .mic-wrapper {
            position: relative;
            display: inline-block;
          }
        
          .mic-tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: #fff;
            padding: 8px 12px;
            border-radius: 12px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 10;
            max-width: 90vw;
            text-align: center;
          }
        
          .mic-tooltip.visible {
            opacity: 1;
          }
        
          .mic-tooltip::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 6px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
          }
        
          .mic-btn {
            background-color: transparent;
            border: none;
            color: #333;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
          }
        
          .mic-btn:hover {
            background-color: #ccc;
          }
        
          @media screen and (max-width: 400px) {
            .mic-tooltip {
              font-size: 12px;
              padding: 6px 10px;
            }
          }
          .carousel-inner {
              display: flex;
            }
            
            .carousel-item {
              flex: 0 0 100%;
              transition: transform 0.6s ease;
            }
            
            .carousel-item:not(.active) {
              display: none;
            }
            
            /* -------------------------------------------------------------------------------------------- */
            /* footer movi */
            .mostrar-en-movil {
              display: none;
            }
            
            @media (max-width: 768px) {
              .mostrar-en-movil {
                display: block;
              }
            }

            .filter-dropdown {
              display: flex;
              align-items: center;
              border: 1px solid #ccc;
              border-radius: 5px;
              padding: 5px 10px;
              font-size: 0.8em;
              color: #333;
              cursor: pointer;
              overflow: hidden;
            }
            
            .filter-dropdown select {
              appearance: none;
              border: none;
              padding: 5px 0;
              font-size: inherit;
              color: inherit;
              background: transparent;
              margin-right: 5px;
              cursor: pointer;
              flex-grow: 1;
            }
            
            .filter-dropdown svg {
              pointer-events: none;
            }
            .slide-header {
                  display: flex;
                  justify-content: space-between;
                  align-items: center;
                  margin-bottom: 10px;
                  padding: 0 10px;
                }
            /* ----------------------------- */

.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.slider-container {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.slider-title {
    color: #333333;
    text-align: left;
    margin-bottom: 10px;
    padding: 0 10px;
    font-size: 1.0em;
    font-family: 'Segoe UI', sans-serif;
    white-space: normal;
    overflow: visible;
    width: 100%;
    word-break: break-word;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 700;
    border-right: none;
    flex-shrink: 0;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    padding: 6px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 6px;
    transition: filter 0.3s ease-in-out;
    filter: brightness(100%);
    display: block;
    border-radius: 8px;
}

.slide:hover img {
    filter: brightness(110%);
}

@media (max-width: 768px) {
    .slide img {
        height: 220px;
    }
}

.prev-button, .next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e0e0e0; /* Grisáceo */
  border: none;
  width: 30px; /* Ajusta el tamaño del círculo */
  height: 30px; /* Ajusta el tamaño del círculo */
  border-radius: 50%; /* Para hacerlo circular */
  font-size: 1em; /* Ajusta el tamaño del icono si es necesario */
  color: #fff; /* Color del icono (blanco) */
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none; /* Remueve la sombra anterior */
}

.prev-button:hover,
.next-button:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.9);
    color:#6e0637;
}

.prev-button {
  left: 20px;
}

.next-button {
  right: 20px;
}

.prev-button i, .next-button i {
  font-size: 1.2em; /* Ajusta el tamaño del icono de la flecha */
}

/*---------------------------- Animación de fondo de blobs -------------------------- */

.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob {
    position: absolute;
    background: linear-gradient(185deg, #B64CFF, #C866FF, #F64EEC, #FF80D4);
    border-radius: 50%;
    opacity: 0.7;
}

.blob-small {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 5%;
    animation: moveAndDeformSmall 4s infinite alternate ease-in-out; /* Reducimos la duración */
}

.blob-large-1 {
    width: 300px;
    height: 200px;
    top: 5%;
    right: 10%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: moveAndDeformLarge1 12s infinite alternate ease-in-out; 
    position: absolute; 
}

.blob-large-2 {
    width: 180px;
    height: 190px;
    bottom: 20%;
    left: 5%;
    border-radius: 40% 60% 70% 30% / 30% 70% 40% 60%;
    animation: moveAndDeformLarge2 5s infinite alternate ease-in-out; 
}

@keyframes moveAndDeformSmall {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 50%; }
    50% { transform: translate(40px, -40px) scale(1.2) rotate(15deg); border-radius: 45% 55% 60% 40% / 40% 60% 30% 70%; } 
    100% { transform: translate(-30px, 20px) scale(0.9) rotate(-10deg); border-radius: 60% 40% 40% 60% / 70% 30% 50% 50%; } 
}

@keyframes moveAndDeformLarge1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; top: 5%; } 
    50% { transform: translate(-50px, 30px) scale(1.1) rotate(-20deg); border-radius: 30% 70% 40% 60% / 30% 60% 70% 40%; top: 30%; } 
    100% { transform: translate(30px, -50px) scale(0.85) rotate(10deg); border-radius: 70% 30% 60% 40% / 40% 30% 60% 70%; top: 5%; } 
}

@keyframes moveAndDeformLarge2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 40% 60% 70% 30% / 30% 70% 40% 60%; }
    50% { transform: translate(60px, 40px) scale(1.25) rotate(25deg); border-radius: 70% 30% 60% 40% / 60% 40% 30% 70%; } 
    100% { transform: translate(-40px, -20px) scale(0.8) rotate(-15deg); border-radius: 30% 70% 70% 30% / 40% 60% 60% 40%; } 
}

/* Capa del desenfoque */
.card-overlay {
    width: 60%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    box-sizing: border-box;
    position: absolute;
    border: 4px solid #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    backdrop-filter: blur(30px);
}

/* Capa superior del contenido nítido */
.foreground-content {
    z-index: 3;
    text-align: center;
    width: 100%;
}

.foreground-content h2 {
    color: #6E0637;
    margin-top: 0;
}

.foreground-content img {
    width: 72%;
    border-radius: 10px 10px 0 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.foreground-content .vendors {
    width: 100%;
    padding: 15px;
    margin-top: auto;
}

.foreground-content .chat-wrapper {
    background: #fff;
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 16px;
}


.foreground-content .chat-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 8px 12px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
}

.foreground-content .chat-input-container input[type="text"] {
    flex: 1 1 200px;
    min-width: 0;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    background-color: transparent;
}

.foreground-content .chat-input-container button {
    background-color: #a4a3a4;
    border: none;
    color: white;
    padding: 8px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.foreground-content .chat-input-container button:hover {
    background-color: #670078 !important;
    color: #fff !important;
}

.foreground-content .mic-wrapper {
    position: relative;
    display: inline-block;
}

.foreground-content .mic-btn {
    background-color: transparent;
    border: none;
    color: #333;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.foreground-content .mic-btn:hover {
    background-color: #ccc;
}

.foreground-content .mic-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    max-width: 90vw;
    text-align: center;
}

.foreground-content .mic-tooltip.visible {
    opacity: 1;
}

.foreground-content .mic-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

@media (max-width: 575.98px) {
  .col-sm-4 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .card-overlay {
    position: relative !important; /* Cambiamos a relative para que respete el flujo */
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important; /* Ocupar todo el ancho de la columna */
    margin-top: 20px; /* Espacio superior si es necesario */
  }
}

/* --------------------- diamont ------------------------*/

.image-container {
  width: 180px; /* Ajusta el tamaño */
  height: auto;
  perspective: 300px;
}

.rotating-image-y {
  width: 100%;
  height: auto;
  animation: rotateY5Times 3s linear forwards; 
  transform-origin: center center;
}

@keyframes rotateY5Times {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(1080deg); 
  }
}

/*-------------- calendario ajustado para móvil ---------------*/

/*-------------- calendario (escritorio) ---------------*/
.week-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;         /* sin scrollbar interna visible */
  margin: 10px auto;
  padding: 0 4px;
}

.week-selector button {
  padding: 10px 15px;
  border: none;
  background-color: #eee;
  cursor: pointer;
  border-radius: 15px;
  font-size: 1em;
  flex-shrink: 0;
}

.week-selector button:hover {
  background-color: #ddd;
}

.date-selector {
  display: flex;
  border-radius: 25px;
  gap: 2px;
  flex-shrink: 1;       /* permite que se comprima si no hay espacio */
  flex-wrap: nowrap;
  overflow: hidden;
}

.date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 20px;
  color: #555;
  font-weight: bold;
  min-width: 0;         /* era 40px fijo — impedía comprimir */
  text-align: center;
  flex-shrink: 1;       /* permite que se comprima */
}

.day-number {
  font-size: 1.0em;
}

.day-name {
  font-size: 0.72em;
  color: #888;
}

.current-day {
  background-color: #6E0637;
  color: white;
}

.current-day .day-name {
  color: white;
}

.indicator {
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
  margin-top: 5px;
}

#currentDayDisplay {
  text-align: center;
  margin-top: 10px;
  color: #333;
}


/* Ajustes específicos para pantallas pequeñas */
@media (max-width: 575.98px) {
  .week-selector {
    gap: 3px;
    padding: 0 3px;
    margin: 10px auto;
  }

  .week-selector button {
    padding: 6px 8px;
    font-size: 0.8em;
    border-radius: 10px;
  }

  .date-selector {
    padding: 6px;
    gap: 2px;
    border-radius: 15px;
  }

  .date-item {
    padding: 8px 10px;
    border-radius: 12px;
    min-width: 25px;
  }

  .day-number {
    font-size: 0.9em;
  }

  .day-name {
    font-size: 0.6em;
  }

  #currentDayDisplay {
    font-size: 0.8em;
  }
}

/*-------------- top 3 - 2 --------------------*/
.top-assets-container {
  padding: 20px;
}

.top-assets-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #6E0637;
}

.top-assets {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.asset-item {
  width: 120px; /* o el tamaño que prefieras */
  height: 120px; /* debe ser igual al ancho para formar un círculo */
  border-radius: 50%; /* Esto crea el círculo */
  overflow: hidden; /* Esto asegura que nada sobresalga del círculo */
  border: 5px solid #ccc; /* Borde gris */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  vertical-align: middle;
}

.asset-image {
  width: 100%;
  height: 100%;
  padding: 0; /* Asegúrate de que no haya padding */
}

.asset-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Esto hace que la imagen llene el círculo, recortando si es necesario */
  display: block; /* Elimina cualquier espacio adicional debajo de la imagen */
}

/* Estilos para móvil */
@media (max-width: 575.98px) {
  .top-assets-container {
    padding: 10px;
  }

  .top-assets-container h2 {
    font-size: 1.2em;
    margin-bottom: 15px;
  }

  .top-assets {
    justify-content: space-around;
  }

  .asset-item {
    width: 90px;
    height: 90px;
    border: 4px solid #ccc;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-bottom: 60px; /* Ajusta este valor según la altura de tu barra inferior */
  }
}


.offplan-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 20px auto;
    padding: 0;          /* sin padding — causaba que el slide siguiente se asomara */
    box-sizing: border-box;
    overflow: hidden;    /* corta estrictamente todo lo que salga */
}

.offplan-slider-container {
    padding: 0;
    overflow: hidden;
}

.offplan-slider-title {
    text-align: center;
    margin-bottom: 0px;
    color: #333;
    font-size: 1.5em;
}

.offplan-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.offplan-slide {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    padding: 0;          /* sin padding — con padding el slide desborda su 100% */
    box-sizing: border-box;
    overflow: hidden;
}

.offplan-slide img {
    max-width: 100%;
    height: 180px;
    margin-bottom: 10px;
    transition: filter 0.3s ease-in-out;
    filter: brightness(100%);
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin: auto;
}

.offplan-slide:hover img {
    filter: brightness(110%);
}

@media (max-width: 768px) {
    
    .offplan-slide img {
        max-height: 260px;
    }
}

.offplan-prev-button, .offplan-next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #e0e0e0; /* Grisáceo */
    border: none;
    width: 30px; /* Ajusta el tamaño del círculo */
    height: 30px; /* Ajusta el tamaño del círculo */
    border-radius: 50%; /* Para hacerlo circular */
    font-size: 1em; /* Ajusta el tamaño del icono si es necesario */
    color: #fff; /* Color del icono (blanco) */
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none; /* Remueve la sombra anterior */
}

.offplan-prev-button:hover,
.offplan-next-button:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.9);
    color:#6e0637;
}

.offplan-prev-button {
    left: 20px;
}

.offplan-next-button {
    right: 20px;
}

.offplan-prev-button i, .offplan-next-button i {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .offplan-prev-button,
    .offplan-next-button {
        width: 25px;
        height: 25px;
        font-size: 0.9em;
    }
}

/* ===== FIX GLOBAL DOBLE SCROLL ===== */
html, body {
    overflow-x: hidden !important;  /* elimina scroll horizontal fantasma */
    max-width: 100vw;
}

/* Evitar que cualquier elemento hijo rompa el ancho de la página */
.container_dos,
.main-container,
.row {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* El overflow va en el WRAPPER, no en el slider que se mueve con transform */
.slider-wrapper,
.offplan-slider-wrapper {
    overflow: hidden !important;  /* corta estrictamente los slides adyacentes */
}
/* El slider mismo NO debe tener overflow:hidden o el transform no funciona */
.slider,
.offplan-slider {
    overflow: visible !important;
}

/* Móvil: todo apilado sin desbordamiento */
@media (max-width: 768px) {
    .left-panel, .center-panel, .right-panel {
        width: 100% !important;
        min-width: 0 !important;
        flex: 0 0 100% !important;
    }

    .week-selector {
        justify-content: flex-start;
        padding: 0 6px;
    }

    .slider-container {
        width: 100% !important;
        border-radius: 16px;
    }
}