 /* styles.css */
 body {
     margin: 0;
     font-family: Arial, sans-serif;
     overflow-x: hidden;
 }

 /* Overlay background */
 .overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     /* Semi-transparente */
     display: none;
     /* Oculto por defecto */
     z-index: 999;
     /* Debajo del menú */
 }

 .overlay.active {
     display: block;
     /* Muestra el fondo */
 }

 .off-canvas-menu {
     position: fixed;
     top: 0;
     left: -300px;
     /* Menu starts hidden */
     width: 300px;
     height: 100%;
     background-color: #fd7e14;
     color: #fff;
     transition: left 0.3s ease;
     /* Smooth animation */
     box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
     z-index: 1000;
     overflow-y: auto;
 }

 .off-canvas-menu nav ul {
     list-style: none;
     padding: 0;
     margin: 50px 0 0;
 }

 .off-canvas-menu nav ul li {
     padding: 5px 10px;
 }

 .off-canvas-menu nav ul li a {
     color: #fff;
     text-decoration: none;
     font-size: 18px;
     display: block;
 }

 .off-canvas-menu nav ul li a:hover {
     background-color: #4d65f9;
     border-radius: 5px;
 }

 .close-btn {
     position: absolute;
     top: 10px;
     right: 10px;
     background: none;
     border: none;
     color: #fff;
     font-size: 30px;
     cursor: pointer;
 }

 .content {
     padding: 20px;
 }

 .open-btn {
     font-size: 18px;
     padding: 10px 15px;
     background-color: #fd7e14;
     color: #fff;
     border: none;
     border-radius: 5px;
     cursor: pointer;
 }

 .open-btn:hover {
     background-color: #444;
 }

 /* When menu is active */
 .off-canvas-menu.active {
     left: 0;
     /* Slide into view */
 }


 /* Add custom scrollbar styling (optional) */
 .off-canvas-menu::-webkit-scrollbar {
     width: 8px;
 }

 .off-canvas-menu::-webkit-scrollbar-thumb {
     background-color: #555;
     border-radius: 4px;
 }

 .off-canvas-menu::-webkit-scrollbar-thumb:hover {
     background-color: #777;
 }
