/* public/css/crear-torneo.css */
/* ============================================
   ESTILOS ESPECÍFICOS DEL FORMULARIO
   ============================================ */

.form-torneo .form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-torneo .form-section h3 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group small {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.3rem;
    display: block;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox input {
    width: auto;
}

.checkbox label {
    margin-bottom: 0;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input[type="file"] {
    padding: 10px;
    background: var(--bg-secondary);
}

input[type="file"]::file-selector-button {
    background: var(--gradient-gold);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* Agregar estos estilos al final de crear-torneo.css */

.config-formato {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid var(--border-color);
}

.config-formato h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
}