/* 20 Improvements Styles */

/* 1. Email prominence - 14px bold */
.request-email {
    font-size: 14px !important;
    font-weight: 700 !important;
}

/* 2. Machine ID truncation */
.machine-id-truncated {
    cursor: help;
}

/* 3. Status badge icons */
.status-badge::before {
    margin-right: 4px;
}

.status-badge.pending::before {
    content: '⏳';
}

.status-badge.approved::before {
    content: '✓';
}

.status-badge.rejected::before {
    content: '✕';
}

/* 4. Platform badges brighter */
.platform-badge {
    padding: 2px 8px !important;
    border-radius: 4px;
}

.platform-badge.mac {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.platform-badge.windows {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* 5. Trend indicators */
.summary-trend {
    font-size: 10px;
    color: #10b981;
    margin-top: 2px;
}

/* 6. Click to filter */
.summary-card {
    cursor: pointer;
    transition: all 0.2s;
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

/* 7. Color intensity - stronger pending */
.summary-card.pending {
    border-color: #f59e0b !important;
}

.summary-card.pending .summary-value {
    color: #fbbf24 !important;
}

/* 8. Hover preview */
.request-tooltip {
    position: absolute;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(96, 165, 250, 0.5);
    border-radius: 6px;
    padding: 8px;
    font-size: 11px;
    z-index: 1000;
    pointer-events: none;
    display: none;
}

.request-item:hover .request-tooltip {
    display: block;
}

/* 9. Dual time display */
.dual-time {
    font-size: 10px;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

/* 10. Copy-all button */
.copy-all-btn {
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.35);
    color: #60a5fa;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-all-btn:hover {
    background: rgba(96, 165, 250, 0.3);
}

/* 11. Approve color green */
.btn-approve {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.btn-approve:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
}

/* 12. Button icons */
.btn-icon::before {
    margin-right: 4px;
}

.btn-approve::before {
    content: '✓ ';
}

.btn-reject::before {
    content: '✕ ';
}

.btn-revoke::before {
    content: '⚠ ';
}

/* 13. Keyboard hints */
.btn-keyboard-hint {
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 10px;
    color: #64748b;
    margin-left: 4px;
}

.btn-large:hover .btn-keyboard-hint {
    opacity: 1;
}

/* 14. Request ID copy (inline) */
.id-copy-btn {
    margin-left: 6px;
    cursor: pointer;
    opacity: 0.6;
}

.id-copy-btn:hover {
    opacity: 1;
}

/* 15. OS Details formatting - pills */
.os-pills {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.os-pill {
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.35);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    color: #60a5fa;
}

/* 16. History timeline */
.history-timeline {
    position: relative;
    padding-left: 24px;
}

.timeline-item {
    position: relative;
    padding: 8px 0;
    border-left: 2px solid rgba(96, 165, 250, 0.3);
    padding-left: 16px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3b82f6;
    border: 2px solid rgba(15, 23, 42, 0.9);
}

.timeline-item:last-child {
    border-left-color: transparent;
}

/* 17. Empty state graphic */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: #64748b;
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state-text {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.empty-state-hint {
    font-size: 11px;
    color: #475569;
}

/* 18. Batch confirmation modal */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.confirmation-content {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    text-align: center;
}

.confirmation-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.confirmation-message {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.confirmation-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

/* 19. Refresh indicator */
.refresh-indicator {
    font-size: 10px;
    color: #64748b;
    margin-left: 8px;
}

/* 20. Breadcrumb dynamic */
.breadcrumb-dynamic {
    color: #60a5fa;
    font-weight: 600;
}
