.formulario-box {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 12px;
}

.formulario-box h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.formulario-box form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.formulario-box p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.seccion-pedidos {
    margin-top: 1rem;
}

.pedido-item {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #2c3e50;
}

.pedido-item input {
    margin-right: 0.5rem;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.btn-success {
    background-color: #27ae60;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-success:hover {
    background-color: #1f8a4d;
}

.volver-enlace {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.6rem 1.5rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    color: #2c3e50;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.volver-enlace:hover {
    background-color: #dcdde1;
    color: #2980b9;
}


/* Responsive */

@media (max-width: 600px) {
    .btn-success {
        width: 100%;
    }
    .pedido-item {
        font-size: 1rem;
    }
}