/* ==============================
   Ambala Jobs – UI Styles
   ============================== */

.aj-job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.aj-job-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.aj-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.aj-job-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.aj-job-card p {
    margin: 6px 0;
    font-size: 14px;
    color: #374151;
}

.aj-job-card strong {
    color: #111827;
}

.aj-job-actions {
    margin-top: 15px;
}

.aj-apply-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #7b1fa2; /* AJ Purple */
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.aj-apply-btn:hover {
    background: #5e1680;
}

/* ==============================
   Single Job Page
   ============================== */

.aj-single-job {
    max-width: 700px;
    margin: 30px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.aj-single-job h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.aj-single-job p {
    font-size: 15px;
    margin: 8px 0;
}

/* ==============================
   Forms (Apply + Employer)
   ============================== */

.aj-job-apply-form,
.aj-employer-job-form {
    margin-top: 20px;
}

.aj-job-apply-form input,
.aj-employer-job-form input,
.aj-employer-job-form textarea,
.aj-employer-job-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    margin-top: 5px;
}

.aj-job-apply-form button,
.aj-employer-job-form button {
    margin-top: 15px;
    background: #7b1fa2;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}

.aj-job-apply-form button:hover,
.aj-employer-job-form button:hover {
    background: #5e1680;
}
