/* Estilos personalizados */
body {
    background-color: #f5f8fa;
}

.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.card-header {
    font-weight: 500;
}

.notification-dropdown {
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    border-left: 3px solid #007bff;
    padding: 10px;
    margin-bottom: 5px;
}

.notification-content {
    margin-left: 5px;
}

/* Status de agendamentos no calendário */
.status-cancelado {
    opacity: 0.6;
    text-decoration: line-through;
}

.status-concluido {
    border-left: 4px solid #28a745 !important;
}

.status-confirmado {
    border-left: 4px solid #0d6efd !important;
}

.status-pendente {
    border-left: 4px solid #ffc107 !important;
}

/* Estilo para páginas de formulário */
.form-label {
    font-weight: 500;
}

.btn-group .btn {
    margin-right: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .card-header h4 {
        font-size: 1.2rem;
    }
}