/**
 * OrangeFiles - Management Styles
 */
.dashboard-tab {
    background: #f1f5f9;
    padding: 24px;
    border-radius: 24px;
    margin-top: 20px;
}

.dashboard-tab h4 {
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* User Management Items */
.user-management-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.user-management-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Code Items */
.code-list {
    margin-top: 15px;
}

.code-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.code-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FF512F;
    letter-spacing: 1.5px;
}

.status-unused {
    background: #dcfce7;
    color: #166534;
}

.status-used {
    background: #f1f5f9;
    color: #64748b;
}

/* Buttons */
.btn-generate {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 81, 47, 0.2);
}

.btn-generate:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* Bulk Download Button */
.bulk-btn.download {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.bulk-btn.download:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Hide action buttons during bulk mode */
.selection-active .bulk-hide {
    display: none !important;
}

/* Make selection indicator more prominent in bulk mode */
.selection-active .selection-indicator {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

/* Drag Selection Box */
.drag-selection-box {
    position: fixed;
    border: 2px solid #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    pointer-events: none;
    z-index: 9999;
    display: none;
    border-radius: 4px;
}