/* Candidate Dashboard  */
.fhc-employee-container h2 {
    font-size: 30px !important;
    color: var(--black);
    margin: 0 0 20px;
    font-family: var(--font-heading);
}

.fhc-employee-welcome-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3d5ff5 100%);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 24px rgba(82, 113, 255, 0.3);
}

.fhc-employee-welcome-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fhc-employee-welcome-text strong {
    font-size: 20px;
}

.fhc-employee-welcome-text p {
    margin: 0;
}

.fhc-employee-applications-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(10, 26, 47, 0.06);
    border: 1px solid var(--grey-200);
    font-size: 15px;
}

.fhc-employee-applications-table th {
    background: var(--grey-50);
    padding: 16px;
    text-align: left;
    font-weight: 700;
    color: var(--black);
    font-family: var(--font-heading);
    border: 1px solid var(--grey-200);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.fhc-employee-applications-table td {
    padding: 16px;
    border: 1px solid var(--grey-200);
    color: var(--grey-900);
    vertical-align: middle;
}

.fhc-status-applied {
    background: #5271ff1c;
    color: #5271FF;
}

.fhc-status-underreview {
    background: #f59e0b2b;
    color: #F59E0B;
}

.fhc-status-shortlisted {
    background: #DCFCE7;
    color: #166534;
}

.fhc-welcome-actions a.fhc-btn.fhc-btn-secondary,
.fhc-credit-actions a.fhc-btn.fhc-btn-secondary {
    background-color: var(--white) !important;
    color: var(--primary-blue) !important;
}

.fhc-welcome-actions a.fhc-btn.fhc-btn-secondary:hover,
.fhc-credit-actions a.fhc-btn.fhc-btn-secondary:hover {
    color: var(--white) !important;
    border-color: var(--white) !important;
    background-color: transparent !important;
}

.fhc-form-msg {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .fhc-employee-welcome-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
	.fhc-welcome-actions,
	.fhc-welcome-actions a.fhc-btn.fhc-btn-secondary{
		width: 100%;
	}
}