.card.custom-card {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #f8f9fa;
    padding: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
}

.list-unstyled li {
    margin: 8px 0;
}

.badge {
    font-size: 0.875rem;
    padding: 0.4em 0.75em;
}

.bg-primary {
    background-color: #007bff;
}

.bg-warning {
    background-color: #ffc107;
}

.bg-success {
    background-color: #28a745;
}

.page-title {
    font-size: 24px;
    color: #333;
}
.card.custom-card ul.list-unstyled {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 5px;
}

.card.custom-card ul.list-unstyled::-webkit-scrollbar {
    width: 5px;
}

.card.custom-card ul.list-unstyled::-webkit-scrollbar-thumb {
    background-color: #007bff;
    border-radius: 10px;
}

.btn-outline-primary {
    border: none !important;          /* Remove a borda */
    color: #6c757d !important;        /* Cinza discreto */
    font-size: 12px !important;       
    padding: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;      /* Alinha o texto à esquerda */
    background-color: transparent !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.btn-outline-primary:hover {
    color: #6c757d !important;        /* Mantém a cor no hover */
    text-decoration: none !important; /* Remove qualquer sublinhado no hover */
    background-color: transparent !important;
}


