/* Explain: Styles for UI components like buttons, cards, and scrollbars. */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.table-scrollbar::-webkit-scrollbar {
    height: 14px;
}
.table-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 8px;
    margin: 10px;
}
.table-scrollbar::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 8px;
    border: 3px solid #f1f5f9;
}
.table-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}