/**
 * Dashboard Stylesheet for Candidate & Recruiter Portals
 *
 * @package Signature_Travels
 */

.sig-dashboard-wrapper {
    margin-top: 20px;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dash-stat-card {
    padding: 20px;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-big-num {
    font-size: 32px;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-top: 8px;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--royal-blue), var(--gold));
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
}

/* Workflow Timeline */
.sig-workflow-timeline {
    display: flex;
    align-items: center;
    gap: 6px;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
}

.step-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.timeline-step.completed .step-icon {
    background: #10B981;
    color: #FFF;
}
.timeline-step.active .step-icon {
    background: var(--gold);
    color: var(--navy);
}

/* Modal Popup */
.sig-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10,25,47,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.sig-modal-content {
    background: #FFF;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-md);
    position: relative;
    padding: 30px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #64748B;
}
