/* ================= BASE COLOR ================= */
:root {
    --primary: #119be0;   /* CHANGE THIS to your brand color */
    --primary-soft: rgba(108,124,255,.12);
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg-soft: #f9fafb;
}

/* ================= LAYOUT ================= */
.application-view {
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ================= HEADER ================= */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: #fff;
}

.app-title h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.app-title .position {
    margin-top: 6px;
    opacity: .9;
}

/* ================= STATUS ================= */
.status-badge {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.status-pending { background: #f59e0b; }
.status-reviewed { background: #3b82f6; }
.status-shortlisted { background: #10b981; }
.status-hired { background: #16a34a; }
.status-rejected { background: #ef4444; }

/* ================= CARD ================= */
.card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--primary);
    display: flex;
    gap: 8px;
}

/* ================= INFO GRID ================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.info-item {
    background: var(--bg-soft);
    padding: 14px 16px;
    border-radius: 12px;
}

.info-item span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.info-item strong,
.info-item a {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--primary);
}

/* ================= TEXT BLOCKS ================= */
.long-text {
    background: var(--bg-soft);
    padding: 18px;
    border-radius: 14px;
    line-height: 1.7;
    color: var(--text-dark);
}

.section-label {
    margin: 16px 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ================= BUTTONS ================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary:hover {
    opacity: .9;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ================= ACTIONS ================= */
.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.actions select {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-weight: 600;
}
