/* Nuevos estilos para la página principal */
.main-container {
    text-align: center;
    padding: 50px 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.welcome-message {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.5rem;
}

.options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.option-card h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.option-card p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.coming-soon {
    background: #f8f9fa;
    border: 2px dashed #bdc3c7;
}

.coming-soon h3 {
    color: #95a5a6;
}

.coming-soon p {
    color: #bdc3c7;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Modificar estilos del header solo para las páginas que lo tienen */
header {
    background: #2c3e50;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

header nav a {
    color: #ecf0f1;
    text-decoration: none;
    margin-right: 20px;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

header nav a:first-child {
    background: #3498db;
}

header nav a:hover {
    background: #3498db;
}

nav a {
    color: #ecf0f1;
    text-decoration: none;
    margin-right: 20px;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #3498db;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

input, button {
    padding: 10px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
}

button {
    background: #3498db;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #2980b9;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #3498db;
    color: white;
}

.agotado {
    color: #e74c3c;
    font-weight: bold;
}

.btn-editar {
    background: #27ae60;
}

.btn-eliminar {
    background: #e74c3c;
}

.btn-vender {
    background: #f39c12;
}

button[disabled] {
    background: #95a5a6;
    cursor: not-allowed;
}

/* Agregar al final del archivo */
.input-edit {
    background-color: #fff3cd !important;
    border: 1px solid #ffeeba !important;
}

.btn-cancelar {
    background: #6c757d;
    margin-left: 10px;
}