/* Procurement Dashboard Specific Styles */

.procurement-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-radius: 12px !important;
}

.procurement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.avatar-md {
    height: 48px;
    width: 48px;
    border-radius: 10px;
}

.bg-primary-subtle {
    background-color: rgba(52, 116, 253, 0.1) !important;
}


.bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.bg-info-subtle {
    background-color: rgba(13, 202, 240, 0.1) !important;
}

.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1) !important;
}


.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

.badge-pill {
    padding-left: 0.8em;
    padding-right: 0.8em;
}

/* Custom Table Polish */
.table-custom thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.025em;
    color: #6c757d;
}

.table-custom tbody td {
    vertical-align: middle;
    padding: 1rem 0.75rem;
}

/* Scrollbar refinement for cards */
.card-body::-webkit-scrollbar {
    width: 6px;
}

.card-body::-webkit-scrollbar-thumb {
    background: #e9ecef;
    border-radius: 10px;
}

.card-body::-webkit-scrollbar-thumb:hover {
    background: #dee2e6;
}