:root {
    --works-blue: #0d6efd;
    --works-blue-dark: #084298;
    --works-soft: #f4f8ff;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    min-height: 100vh;
}

.brand-text {
    color: var(--works-blue);
    font-weight: 900;
    letter-spacing: .5px;
}

.hero-card,
.admin-card {
    border: 0;
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(13, 110, 253, .10);
    overflow: hidden;
}

.animated-in {
    animation: fadeUp .45s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-pill {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #dbeafe;
    color: var(--works-blue-dark);
    font-weight: 800;
}

.step-pill.active {
    background: var(--works-blue);
    color: #fff;
}

.form-control,
.form-select,
.btn {
    border-radius: .9rem;
}

.btn-primary {
    box-shadow: 0 10px 25px rgba(13,110,253,.18);
}

.small-muted {
    color: #6c757d;
    font-size: .9rem;
}

.candidate-row:hover {
    background: #f7fbff;
}

.map-box {
    height: 320px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #dbeafe;
}

.resume-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .65rem;
    background: var(--works-soft);
    border-radius: 999px;
    text-decoration: none;
}

@media (max-width: 576px) {
    .hero-card .card-body { padding: 1.2rem !important; }
    h1 { font-size: 1.8rem; }
    .map-box { height: 260px; }
}

.doc-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .6rem;
    background: var(--works-soft);
    border: 1px solid #dbeafe;
    border-radius: 999px;
    font-size: .9rem;
}

.btn-close-sm {
    width: .55rem;
    height: .55rem;
    padding: .2rem;
}

.document-status-card {
    border: 1px solid #e7f0ff;
    border-radius: 1rem;
    padding: 1rem;
    background: #fff;
}

.secure-note {
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: 1rem;
    padding: .85rem;
}
