/* ═══════════════════════════════════════════════════════════════
   RecruitPro Enterprise — Component Styles
   ═══════════════════════════════════════════════════════════════ */

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}
.badge-sky { background: rgba(14, 165, 233, 0.15); color: #38bdf8; }
.badge-amber { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.badge-indigo { background: rgba(99, 102, 241, 0.15); color: #a5b4fc; }
.badge-emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.badge-rose { background: rgba(244, 63, 94, 0.15); color: #fb7185; }

/* Job Type Badges */
.job-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Progress Bar */
.progress-bar {
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 9999px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 1s ease-in-out;
}

/* Timeline */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 1.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0.4375rem;
    top: 1.5rem;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid;
    background: rgb(15, 23, 42);
}

/* File Upload Zone */
.upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}
.upload-zone:hover,
.upload-zone.dragover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.05);
}

/* Stat Card Counter */
.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: #64748b;
}
.empty-state svg { margin: 0 auto 1rem; opacity: 0.3; }
