.card-status {
    height: 100%;
    border-radius: 10px;
}

.bar {
    height: 10px;
    border-radius: 5px;
}

.bar-recebidas {
    background-color: #198754;
}

.bar-confirmadas {
    background-color: #0d6efd;
}

.bar-aguardando {
    background-color: #fd7e14;
}

.bar-vencidas {
    background-color: #dc3545;
}

.text-sm {
    font-size: 0.9rem;
    color: #6c757d;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
}

/* Clickable charges links styling */
.charges-link {
    display: block;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    color: #6c757d !important;
}

.charges-link:hover {
    background-color: #f8f9fa;
    color: #495057 !important;
    text-decoration: underline !important;
    transform: translateX(2px);
}

.charges-arrow {
    font-size: 0.75rem;
    margin-left: 4px;
    opacity: 0.6;
    transition: all 0.2s ease-in-out;
}

.charges-link:hover .charges-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Help icons styling */
.card-help-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 14px;
    color: #adb5bd;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    z-index: 10;
}

.card-help-icon:hover {
    color: #6c757d;
    transform: scale(1.1);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .card-help-icon {
        top: 10px;
        right: 10px;
        font-size: 12px;
    }
}