body {
    font-family: Arial, sans-serif;     
}

.hero-section {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../imagenes/imagen1.png'); /* Reemplaza con la URL de tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section2 {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../imagenes/imagen1.png'); /* Reemplaza con la URL de tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.4); /* Capa oscura para mejorar la legibilidad */
}
.hero-section2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.4); /* Capa oscura para mejorar la legibilidad */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    margin-top: 100px; /* Ajuste para el espacio del navbar */
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
}

.btn-primary {
    background-color: #38b13c; /* Color verde del botón */
    border-color: #38b13c;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2e8b31;
    border-color: #2e8b31;
}

/* Estilo para los controles de carrusel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.carousel-nav a {
    color: white;
    font-size: 2.5rem;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 50%;
}

.carousel-nav a:hover {
    background: rgba(0, 0, 0, 0.6);
}


/***seccion 2***/


/* Custom Styles for About Us Section */
.about-us-section {
    background-color: #f8f9fa; /* Color de fondo suave */
}

.about-content h2 {
    color: #212529; /* Color de texto oscuro */
}

.about-content p.text-muted {
    font-size: 1rem;
    line-height: 1.6;
}

.about-content .img-fluid {
    height: 100%;
    object-fit: cover;
}

.about-content .col-6 {
    padding: 5px;
}

/* Custom Styles for Features Section */
.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/****Seccion 3****/
/* Custom Styles for Destination Section */
.destination-section {
    background-color: #ffffff;
}

.destination-card {
    overflow: hidden;
    text-decoration: none;
    border-radius: 0.5rem;
}

.destination-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.destination-card .overlay {
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.5s ease-in-out;
    z-index: 1;
}

.destination-card .card-content {
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); /* Recuadro con transparencia */
    border-radius: 0 0 0.5rem 0.5rem;
    transition: background 0.5s ease-in-out;
}

/* Efecto hover */
.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card:hover .overlay {
    background: rgba(0, 0, 0, 0.6); /* Sombra gris que cubre lo que está fuera del recuadro */
}

/***seccion 4***/
/* Custom Styles for Services Section */
.services-section {
    background-color: #f8f9fa; /* Fondo gris claro */
}

.service-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    transition: background-color 0.3s ease-in-out;
}

.service-icon svg {
    transition: fill 0.3s ease-in-out;
}

.service-card:hover .service-icon {
    background-color: #ffffff !important;
    border: 2px solid #38b13c; /* Borde verde en hover */
}

.service-card:hover .service-icon svg {
    fill: #38b13c; /* Icono verde en hover */
}

.service-card h5 {
    color: #212529; /* Color de texto oscuro */
}

.service-card p.text-muted {
    font-size: 0.9rem;
    line-height: 1.6;
}

/***seccion 5***/
/* Custom Styles for Tour Packages Section */
.tour-packages-section {
    background-color: #f8f9fa; /* Fondo gris claro */
}

.tour-package-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.tour-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.tour-package-card img.card-img-top {
    height: 250px; /* Altura fija para todas las imágenes */
    object-fit: cover; /* Recorta y ajusta la imagen sin distorsión */
}

.tour-package-card .package-info {
    z-index: 2;
}

.tour-package-card .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.6em;
}

.tour-package-card .card-body {
    display: flex;
    flex-direction: column;
}

.tour-package-card .card-text {
    flex-grow: 1; /* Permite que el párrafo se estire para mantener la consistencia */
}

.tour-package-card .rating {
    font-size: 1rem;
}

.tour-package-card .price {
    font-size: 1.5rem;
}
/* Estilos para la sección del encabezado con carrusel */
.hero-section {
    position: relative;
    min-height: 100vh; /* Ocupa toda la altura de la ventana */
    overflow: hidden;
}

.hero-section2 {
    position: relative;
    min-height: 12vh; /*Ocupa toda la altura de la ventana */
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item,
.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-item {
    text-align: center;
}

.carousel-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.carousel-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    padding: 0 15px;
    width: 100%;
}

/* Estilos para la barra de navegación */
.hero-section .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent !important;
}

.hero-section2 .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent !important;
}
.hero-section-page3 .navbar {
     position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #000 !important;
}

/* Ajustes para los controles del carrusel */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-size: 100%, 100%;
    /* Asegura que el ícono sea visible */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Ajustes para el contenido del carrusel */
.hero-section .carousel-caption h1,
.hero-section .carousel-caption h4 {
    color: white;
}

/* Elimina los estilos antiguos para evitar conflictos */
.hero-section {
    background-image: none !important;
}
.hero-section2 {
    background-image: none !important;
}

.carousel-nav {
    display: none; /* Oculta los controles de carrusel antiguos */
}
.imgLogo{
    /* position: relative;
    left: 150px; */
    width: 50px;
    height: 50px;
}
.imgSeccion1{
    width: 100%;
    height: 100%;
}
.tituloley{
    text-align: center;
    font-size: 2.5rem;
    color: #050505;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}
.imgCaruselAlojamiento{
    width: 100%;
    height: 100%;
}

.encabezado1{    
    position: relative;
    top: -2px;
    height: 450px !important;
}
   .carousel-item img {
            height: 350px;
            object-fit: cover;
            border-radius: 8px;
        }
        .alojamiento-descripcion {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
    

        /***pagina alojhamiento***/
/* ====== SOLO ALOJAMIENTO ====== */

/* Evitar que el CSS global del hero ponga los carouseles en absolute/100% */
#alojamiento .carousel,
#alojamiento .carousel-inner
 {
  position: relative !important;
  height: 350px;
  width: 100%;
}
#alojamiento .carousel-item {
  height: 400px !important;      /* ALTURA FIJA para todas las imágenes */
}

/* Marco del carrusel (esquina redondeada + overflow correcto) */
#alojamiento #carouselAlojamiento {
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
    width: 100%;
  max-width: 600px;   /* opcional: limita ancho */
  margin: 0 auto; 
}

/* Imágenes: que se vean COMPLETAS (sin corte) */
#alojamiento .imgCaruselAlojamiento {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;  /* imagen completa */
  object-position: center center;
  display: block;
}

/* Opcional: limitar altura en desktop para que el bloque no sea enorme */
@media (min-width: 992px) {
  #alojamiento #carouselAlojamiento {
    max-height: 360px;
  }
  #alojamiento .imgCaruselAlojamiento {
    max-height: 360px;
  }
}

/* Alineación vertical del texto a la derecha */
#alojamiento .alojamiento-descripcion {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Mejor visibilidad de flechas sobre imágenes claras (opcional) */
#alojamiento .carousel-control-prev-icon,
#alojamiento .carousel-control-next-icon {
  filter: drop-shadow(0 0 2px rgba(0,0,0,.7));
}

#alojamiento .carousel-item img,
#alojamiento .imgCaruselAlojamiento {
    width: 100%;
  height: 400px !important;
  object-fit: cover;   /* rellena el espacio con recorte proporcional */
  object-position: center center;
  border-radius: 8px;
  display: block;
}

/* ====== FIN SOLO ALOJAMIENTO ====== */


/* ====== SOLO LEY DE ORIGEN ====== */
.leyorigenEncabezado{
    position: relative;
    bottom: 260px;
}


/* ====== FIN SOLO LEY DE ORIGEN ====== */
/* ====== Diseño Diego Poveda 20/12/2025/ ====== */
/* MODAL MUSCUBUN - UNA SOLA COLUMNA */
#modalMuscubun .modal-dialog.modal-xl {
    max-width: 900px;
    margin: 1.5rem auto;
}

#modalMuscubun .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#modalMuscubun .modal-header {
    background: linear-gradient(135deg, #198754, #0d6efd);
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

#modalMuscubun .modal-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    margin: 0;
    text-align: center;
    width: 100%;
}

#modalMuscubun .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

#modalMuscubun .btn-close:hover {
    opacity: 1;
}

#modalMuscubun .modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 75vh;
    overflow-y: auto;
}

/* IMAGEN - OCUPANDO ANCHO COMPLETO */
#modalMuscubunImagen {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    display: block;
}

#modalMuscubunImagen.d-none {
    display: none !important;
}

/* DESCRIPCIÓN - GRANDE, OCUPANDO MÁXIMO ESPACIO */
#modalMuscubunDescripcion {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    text-align: justify;
    margin: 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    min-height: 200px;
    max-height: 350px;
    overflow-y: auto;
    flex: 1;
}

/* Scrollbar para descripción */
#modalMuscubunDescripcion::-webkit-scrollbar {
    width: 8px;
}

#modalMuscubunDescripcion::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#modalMuscubunDescripcion::-webkit-scrollbar-thumb {
    background: #198754;
    border-radius: 10px;
}

#modalMuscubunDescripcion::-webkit-scrollbar-thumb:hover {
    background: #157347;
}

/* Estado vacío descripción */
#modalMuscubunDescripcion:empty::before {
    content: "No hay descripción disponible.";
    color: #6c757d;
    font-style: italic;
    font-size: 1rem;
    display: block;
    text-align: center;
    padding: 2rem;
}

/* CONTENEDOR PDF - PEQUEÑO */
#modalMuscubunPDF {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    margin-top: 0.5rem;
}

#modalMuscubunPDF.d-none {
    display: none !important;
}

/* Título del PDF */
#modalMuscubunPDF::before {
    content: "Documento PDF";
    display: block;
    font-weight: 600;
    color: #198754;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f1f1;
}

/* VISUALIZADOR PDF - PEQUEÑO */
#modalMuscubunPDF .ratio.ratio-4x3 {
    max-height: 250px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

#modalMuscubunIframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

/* BOTÓN DESCARGAR - GRANDE Y VISIBLE */
#modalMuscubunDescargar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #198754, #0d6efd);
    border: none;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    margin: 1rem auto 0 auto;
    box-shadow: 0 5px 20px rgba(25, 135, 84, 0.3);
}

#modalMuscubunDescargar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
    color: white;
    text-decoration: none;
}

#modalMuscubunDescargar:active {
    transform: translateY(-1px);
}

/* Icono del botón */
#modalMuscubunDescargar::before {
    content: "📥";
    font-size: 1.3rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    #modalMuscubun .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
    
    #modalMuscubun .modal-body {
        padding: 1.25rem;
        gap: 1.25rem;
        max-height: 80vh;
    }
    
    #modalMuscubunDescripcion {
        max-height: 300px;
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    #modalMuscubunPDF .ratio.ratio-4x3 {
        max-height: 220px;
    }
    
    #modalMuscubunDescargar {
        padding: 0.75rem 1.75rem;
        font-size: 1.05rem;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    #modalMuscubun .modal-body {
        padding: 1rem;
        gap: 1rem;
        max-height: 85vh;
    }
    
    #modalMuscubunImagen {
        max-height: 250px;
    }
    
    #modalMuscubunDescripcion {
        max-height: 280px;
        padding: 1rem;
        font-size: 0.95rem;
        min-height: 180px;
    }
    
    #modalMuscubunPDF {
        padding: 1rem;
    }
    
    #modalMuscubunPDF .ratio.ratio-4x3 {
        max-height: 200px;
    }
    
    #modalMuscubunDescargar {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    #modalMuscubun .modal-header {
        padding: 0.75rem 1rem;
    }
    
    #modalMuscubun .modal-title {
        font-size: 1.2rem;
        padding-right: 2rem;
    }
    
    #modalMuscubun .btn-close {
        right: 1rem;
    }
    
    #modalMuscubun .modal-body {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    #modalMuscubunImagen {
        max-height: 200px;
    }
    
    #modalMuscubunDescripcion {
        max-height: 250px;
        padding: 0.75rem;
        font-size: 0.9rem;
        min-height: 150px;
    }
    
    #modalMuscubunPDF .ratio.ratio-4x3 {
        max-height: 180px;
    }
    
    #modalMuscubunPDF {
        padding: 0.75rem;
    }
    
    #modalMuscubunPDF::before {
        font-size: 1rem;
    }
    
    #modalMuscubunDescargar {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Para pantallas altas - ajustar alturas */
@media (min-height: 800px) {
    #modalMuscubun .modal-body {
        max-height: 85vh;
    }
    
    #modalMuscubunDescripcion {
        max-height: 400px;
    }
    
    #modalMuscubunPDF .ratio.ratio-4x3 {
        max-height: 300px;
    }
}

/* Animación suave */
#modalMuscubun.modal.fade .modal-dialog {
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.3s ease;
}

#modalMuscubun.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

/* Asegurar que todo sea visible sin scroll externo */
#modalMuscubun .modal-body {
    /* Si el contenido es muy largo, permitir scroll interno en cada sección */
    overflow-y: auto;
}

#modalMuscubunDescripcion,
#modalMuscubunPDF .ratio.ratio-4x3 {
    /* Cada sección tiene su propio scroll si es necesario */
    overflow: auto;
}



/* Estilos para las tarjetas del dashboard */
/* 21/12/2025 */
    :root {
      --primary-color: #4e73df;
      --secondary-color: #858796;
      --success-color: #1cc88a;
      --info-color: #36b9cc;
      --warning-color: #f6c23e;
      --danger-color: #e74a3b;
      --light-bg: #f8f9fc;
    }
    
    body {
      background-color: var(--light-bg);
      font-family: 'Segoe UI', sans-serif;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }
    
    .sidebar {
      height: 100vh;
      background: linear-gradient(180deg, var(--primary-color) 0%, #224abe 100%);
      color: white;
      position: fixed;
      width: 250px;
      transition: all 0.3s;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      left: 0;
      top: 0;
    }
    
    .sidebar-header {
      flex-shrink: 0;
      padding: 1rem 0.75rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .sidebar-nav {
      flex: 1;
      overflow-y: auto;
      overflow-x: hidden;
      max-height: calc(100vh - 200px);
    }
    
    .sidebar-nav::-webkit-scrollbar {
      width: 8px;
    }
    
    .sidebar-nav::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      margin: 5px 0;
    }
    
    .sidebar-nav::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 4px;
    }
    
    .sidebar-nav::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.5);
    }
    
    .sidebar-nav {
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
    }
    
    .sidebar-footer {
      flex-shrink: 0;
      padding: 1rem 0.75rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: auto;
    }
    
    .sidebar .nav-link {
      color: rgba(255, 255, 255, 0.8);
      padding: 0.75rem 1rem;
      margin: 2px 8px;
      border-radius: 6px;
      transition: all 0.3s;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
    }
    
    .sidebar .nav-link:hover {
      background-color: rgba(255, 255, 255, 0.15);
      color: white;
      transform: translateX(5px);
    }
    
    .sidebar .nav-link.active {
      background-color: rgba(255, 255, 255, 0.2);
      color: white;
      font-weight: 600;
      border-left: 3px solid white;
    }
    
    .sidebar .nav-link i {
      margin-right: 10px;
      width: 20px;
      text-align: center;
      font-size: 1.1rem;
    }
    
    .sidebar .nav-item {
      margin-bottom: 2px;
    }
    
    #content {
      margin-left: 250px;
      width: calc(100% - 250px);
      transition: all 0.3s;
      min-height: 100vh;
    }
    
    .topbar {
      height: 70px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      background: white;
      position: sticky;
      top: 0;
      z-index: 999;
    }
    
    .user-info {
      color: var(--primary-color);
      font-weight: 600;
    }
    
    /* Botón para toggle sidebar en móviles */
    .sidebar-toggle {
      display: none;
      position: fixed;
      top: 15px;
      left: 15px;
      z-index: 1001;
      background: var(--primary-color);
      color: white;
      border: none;
      border-radius: 5px;
      padding: 10px;
      cursor: pointer;
    }
    
    @media (max-width: 768px) {
      .sidebar-toggle {
        display: block;
      }
      
      .sidebar {
        margin-left: -250px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
      }
      
      .sidebar.active {
        margin-left: 0;
      }
      
      #content {
        width: 100%;
        margin-left: 0;
      }
      
      #content.active {
        margin-left: 250px;
        width: calc(100% - 250px);
      }
    }
    
    @media (max-width: 576px) {
      .sidebar {
        width: 220px;
      }
      
      #content {
        margin-left: 220px;
        width: calc(100% - 220px);
      }
    }
  