/* Estilos gerais */
body {
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Formulários */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

/* Botões */
.btn-primary {
    background-color: #0d6efd;
    border: none;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

/* Tabelas */
.table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

/* Alertas */
.alert {
    border: none;
    border-radius: 8px;
}

/* Badges */
.badge {
    padding: 0.5em 0.8em;
    border-radius: 4px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Estilos para tooltips e ícones de informação */
.tooltip {
    font-size: 0.875rem;
}

.tooltip-inner {
    max-width: 300px;
    text-align: left;
    white-space: pre-line;
    background-color: #495057;
    border-radius: 6px;
    padding: 8px 12px;
}

.fa-info-circle {
    margin-left: 5px;
    font-size: 0.9em;
    transition: color 0.2s ease;
}

.fa-info-circle:hover {
    color: #0d6efd !important;
}

/* Melhorar a aparência dos tooltips */
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #495057;
}

.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #495057;
}

.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #495057;
}

.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #495057;
} 