/* Trainer Styles */
.select-field {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.select-field:focus {
    outline: none;
    border-color: #2563EB;
}

.select-field:hover {
    border-color: #cbd5e1;
}

.entry-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.entry-label {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.entry-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .select-field {
        font-size: 0.95rem;
        padding: 0.65rem;
    }
    
    .entry-label {
        font-size: 0.9rem;
    }
}
