.select2-container .select2-selection--single {
    height: 38px;
    padding: 5px 10px;
}

.select2-selection__rendered {
    line-height: 28px !important;
}

.select2-selection__arrow {
    height: 36px !important;
}

.doc-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.doc-preview {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.doc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doc-icon {
    font-size: 40px;
    color: #6c757d;
}

.doc-info {
    padding: 10px;
    text-align: center;
}

.doc-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doc-actions {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.empty-box i {
    font-size: 40px;
    color: #ccc;
}

.empty-box p {
    margin-top: 10px;
    color: #999;
}

tr:hover .drag-handle {
    opacity: 1;
}
.drag-handle {
    fill: #9aa0a6;
    cursor: grab;
    opacity: 0.4;
    transition: 0.2s;
}

.drag-handle:hover {
    fill: #3b82f6;
}

/* Base card style */
.dashboard-card {
    border: none;
    border-radius: 12px;
    color: #2d3748;
}

/* Employees - Soft Indigo */
.widget-employee {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}

/* Companies - Soft Cyan */
.widget-companies {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
}

/* Total - Neutral Gray */
.widget-total-requests {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

/* Approved - Soft Green */
.widget-approved-requests {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

/* Pending - Soft Amber */
.widget-pending-requests {
    background: linear-gradient(135deg, #fffbeb, #fde68a);
}

/* Rejected - Soft Red */
.widget-rejected-requests {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
}

.dashboard-card:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        color: none;
        border: none;
        background-color: none;
        background: none;
    }