        /* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    /* Modo oscuro por defecto */
    body {
        font-family: 'Arial', sans-serif;
        color: #F3EFE9;
        line-height: 1.6;
        margin: 0;
        background-color: #333;
        transition: background-color 0.3s, color 0.3s;
    }

    body.light-mode {
        background-color: #F3EFE9;
        color: #333;
    }

    header h1, .menu-section h2, .menu-item .price {
        transition: color 0.3s;
    }

    header h1.light-mode, .menu-section h2.light-mode, .menu-item .price.light-mode {
        color: #666;
    }

    .menu-item {
        transition: background-color 0.3s, box-shadow 0.3s;
    }

    .menu-item.light-mode {
        background-color: #C29972;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    footer a {
        color: #76c7ff;
        transition: color 0.3s;
    }

    footer a:hover {
        text-decoration: underline;
    }

    footer a.light-mode {
        color: #007BFF;
    }

    /* Botón de cambio de modo */
    .toggle-mode-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #D3481D;
        color: #fff;
        border: none;
        padding: 10px 15px;
        border-radius: 25px;
        font-size: 14px;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
    }


    .toggle-mode-btn:hover {
        background-color: #E77451;
    }

    .toggle-mode-btn.light-mode {
        background-color: #D3481D;
    }

    .toggle-mode-btn.light-mode:hover {
        background-color: #E77451;
    }

        .container {
            width: 90%;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            margin-bottom: 20px;
        }

        header img {
            max-width: 200px;
        }

        header h1 {
            font-size: 1.8rem;
            margin-top: 10px;
            color: #888;
        }

        .menu-section {
            margin-bottom: 30px;
        }

        .menu-section3 {
            margin-bottom: 30px;
        }

        .menu-section h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #666;
            border-bottom: 2px solid #333;
            display: inline-block;
            padding-bottom: 5px;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* color items menu */
            background: #E7D7C9;
            margin-bottom: 15px;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .menu-item .details {
            max-width: 70%;
        }

        .menu-item .details h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #333;
        }

        .menu-item .details p {
            font-size: 0.9rem;
            color: #666;
        }

        .menu-item .price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
        }

        footer {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #777;
        }

        footer p {
            margin-bottom: 5px;
        }

        footer a {
            color: #007BFF;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }


    /* Estilo para los elementos seleccionados */
    .menu-item.selected {
        background-color: #D6BAA0;
        color: #fff;
        font-weight: bold;
        border-left: 5px solid #835D39;
        transition: background-color 0.3s, color 0.3s;
    }

    .menu-item.selected.light-mode {
        background-color: #007BFF;
        border-left-color: #003f7f;
    }

    /* Botón de mostrar seleccionados */
    .view-selected-btn {
        position: fixed;
        bottom: 20px;
        right: 100px; /* Separado del botón de modo oscuro */
        background-color: #D3481D;
        color: #fff;
        border: none;
        padding: 10px 15px;
        border-radius: 25px;
        font-size: 14px;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
    }

    .view-selected-btn:hover {
        background-color: #E77451;
    }

    .view-selected-btn.light-mode {
        background-color: #D3481D;
    }

    .view-selected-btn.light-mode:hover {
        background-color: #E77451;
    }