.dashboard-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dashboard-menu-link {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 5px;
    background: #fff;
    color: #38424D;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(56, 66, 77, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dashboard-menu-link:hover,
.dashboard-menu-link.active {
    background: #D2AFFF;
    color: #fff;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 8px 30px rgba(56, 66, 77, 0.06);
}

.stat-card h3 {
    font-size: 28px;
    margin-bottom: 6px;
    color: #38424D;
}

.stat-card p {
    margin: 0;
    color: #747E88;
    font-size: 14px;
}

.job-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(56, 66, 77, 0.06);
}

.job-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #38424D;
}

.job-card-meta {
    font-size: 13px;
    color: #747E88;
    margin-bottom: 15px;
}

.job-card-section {
    margin-bottom: 15px;
}

.job-card-section h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #38424D;
}

.job-card-section p,
.job-card-section pre {
    margin: 0;
    color: #747E88;
    font-size: 14px;
    white-space: pre-wrap;
    font-family: inherit;
}

.job-card-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.applications-table {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(56, 66, 77, 0.06);
}

.applications-table table {
    width: 100%;
    margin: 0;
}

.applications-table th,
.applications-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.applications-table th {
    background: #f9fafb;
    color: #38424D;
    font-weight: 600;
}

.applications-table td {
    color: #747E88;
}

.apply-form .form-group {
    margin-bottom: 18px;
}

.apply-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #38424D;
}

.apply-form .form-control {
    width: 100%;
    border: 1px solid #e1e5ea;
    border-radius: 5px;
    padding: 10px 14px;
}

.saved-cv-box {
    background: #f9fafb;
    border: 1px dashed #d5dbe1;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 18px;
}

.saved-video-box {
    background: #f9fafb;
    border: 1px dashed #d5dbe1;
    border-radius: 8px;
    padding: 15px;
}

.intro-video-preview {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.intro-video-preview video {
    display: block;
    width: 100%;
    max-height: 320px;
    background: #000;
}

.cv-view-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #D2AFFF;
    text-decoration: none;
}

.cv-view-link:hover {
    color: #38424D;
    text-decoration: underline;
}

.dashboard-actions .cv-view-link.main-btn {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    text-decoration: none;
}

.dashboard-actions .cv-view-link.main-btn:hover {
    color: #fff;
    text-decoration: none;
}

.public-jobs-header {
    text-align: center;
    margin-bottom: 35px;
}

.public-jobs-header h1 {
    font-size: 36px;
    color: #38424D;
    margin-bottom: 10px;
}

.public-jobs-header p {
    color: #747E88;
}

.public-jobs-wrap {
    min-height: 100vh;
    background: #f9fafb;
    padding: 120px 15px 60px;
}

.public-jobs-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 16px 0;
    z-index: 100;
}

.public-jobs-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.public-jobs-nav img {
    height: 34px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(56, 66, 77, 0.06);
}

.empty-state p {
    color: #747E88;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .applications-table {
        overflow-x: auto;
    }

    .public-jobs-header h1 {
        font-size: 28px;
    }
}
