 /* Estilos Generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #e9f5f5; /* Fondo claro */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.container:hover {
    transform: scale(1.01);
}

h1 {
    text-align: center;
    color: #00b4d8; /* Azul vibrante */
    margin-bottom: 1.5rem;
}

h1 i {
    margin-right: 0.5rem;
}

/* Formulario */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #00b4d8; /* Borde azul al enfocar */
    outline: none;
}

button {
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #00b4d8; /* Azul vibrante */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: #0096c7; /* Azul más oscuro al pasar el cursor */
}

/* Lista de Pedidos */
.lista-pedidos {
    margin-top: 2rem;
}

.pedido {
    background: #fff;
    border-left: 5px solid;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pedido:hover {
    transform: scale(1.02);
}

.pedido.pendiente {
    border-color: #f1c40f;
}

.pedido.completado {
    border-color: #2ecc71;
}

.pedido.cancelado {
    border-color: #e74c3c;
}

.info-pedido h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-pedido p {
    color: #7f8c8d;
    margin-bottom: 0.3rem;
}

.acciones-pedido button {
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-completar {
    background: #2ecc71;
    color: white;
}

.btn-cancelar {
    background: #e74c3c;
    color: white;
}

/* Filtros */
.filtros {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.btn-filtro {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-filtro.active {
    background: #00b4d8;
    color: white;
    border-color: #00b4d8;
}

/* Enlaces */
.enlace-ventas {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-ver {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #00b4d8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-ver:hover {
    background: #0096c7;
}