.left_col {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 230px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  scrollbar-width: none; 
}

.left_col::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.left_col:hover::-webkit-scrollbar {
  width: 6px;
}

.left_col:hover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

/* Expanded sidebar */
body.nav-md .left_col {
  width: 230px;
}

body.nav-md .right_col {
  margin-left: 230px;
}

/* Collapsed sidebar */
body.nav-sm .left_col {
  width: 70px;
}

body.nav-sm .right_col {
  margin-left: 70px;
}

/* Verification Queue Improvements */
.stat-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
    border-radius: 12px !important;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-light-primary { background-color: rgba(0, 123, 255, 0.1); }
.bg-light-success { background-color: rgba(40, 167, 69, 0.1); }
.bg-light-info { background-color: rgba(23, 162, 184, 0.1); }
.bg-light-warning { background-color: rgba(255, 193, 7, 0.1); }
.bg-light-danger { background-color: rgba(220, 53, 69, 0.1); }

.text-primary { color: #007bff !important; }
.text-success { color: #28a745 !important; }
.text-info { color: #17a2b8 !important; }
.text-warning { color: #ffc107 !important; }
.text-danger { color: #dc3545 !important; }

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.verification-input {
    border: 2px solid #e9ecef;
    transition: all 0.2s;
}

.verification-input:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    background-color: #fff;
    transform: scale(1.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,.02);
}

.table-danger-soft {
    background-color: rgba(220, 53, 69, 0.05);
}

.table-danger-soft:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
}
