/* Definições de botões */
.btn-primary {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

/* Estilos para status */
.status-agendado {
    color: #059669;
    font-weight: 600;
}

.status-em_andamento {
    color: #d97706;
    font-weight: 600;
}

.status-concluido {
    color: #059669;
    font-weight: 600;
}

.status-cancelado {
    color: #dc2626;
    font-weight: 600;
}

/* Estilos para tipos */
.tipo-tecnico {
    color: #3b82f6;
    font-weight: 500;
}

.tipo-operacional {
    color: #8b5cf6;
    font-weight: 500;
}

.tipo-seguranca {
    color: #dc2626;
    font-weight: 500;
}

.tipo-administrativo {
    color: #059669;
    font-weight: 500;
}

/* Estilos para listagem */
.treinamento-list-item {
    transition: all 0.2s ease-in-out;
}

.treinamento-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Estilos para formulário */
.compact-form {
    background-color: #f8fafc;
}

.compact-form h3 {
    color: #1e293b;
    font-weight: 600;
}

.compact-form label {
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.compact-form input,
.compact-form select,
.compact-form textarea {
    width: 100%;
    padding: 0.5rem 0;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #d1d5db;
    outline: none;
    transition: border-color 0.2s ease;
    color: #374151;
    font-size: 0.875rem;
}

.compact-form input:focus,
.compact-form select:focus,
.compact-form textarea:focus {
    border-bottom-color: #3b82f6;
    box-shadow: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .treinamento-list-item .grid {
        grid-template-columns: 1fr;
    }
    
    .compact-form .grid {
        grid-template-columns: 1fr;
    }
} 