/* 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;
}

.status-realizado {
    color: #059669;
    font-weight: 600;
}
.status-programado {
    color: #d97706;
    font-weight: 600;
}
.status-pendente {
    color: #dc2626;
    font-weight: 600;
}
.ronda-list-item {
    transition: all 0.2s ease-in-out;
}
.ronda-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.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;
}

/* Estilos para select múltiplo */
.compact-form select[multiple] {
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5rem;
    background: white;
    min-height: 120px;
}

.compact-form select[multiple]:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Estilos para checkbox de falso positivo */
.compact-form input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    padding: 0;
    height: 1rem;
    width: 1rem;
}

.compact-form input[type="checkbox"]:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.compact-form input[type="checkbox"]:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

/* Estilo para o container do checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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