
/* single job page */



.job-detail-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-detail {
    padding: 20px;
}

/* Job Title */
.job-title {
    color: #0056b3;
    margin-bottom: 20px;
    text-align: center;
}

/* Job Meta */
.job-meta {
    margin-bottom: 20px;
    color: #555;
    text-align: center;
}

.job-meta p {
    margin: 10px 0;
}

/* Headings */
h3 {
    color: #0056b3;
    margin-top: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

/* Job Description and Requirements */
.job-description, 
.job-requirements {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #444;
}

/* Skills */
.job-skills {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-skills li {
    background: #e0f7fa;
    color: #00796b;
    padding: 8px 15px;
    border-radius: 20px;
    text-align: center;
}

/* Application Form */
/* General Form Styling */
.job-application-form {
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #333333;
    font-size: 14px;
}

.form-input,
.form-textarea {
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #0056b3;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.3);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.form-submit .form-button {
    background: #0056b3;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-submit .form-button:hover {
    background: #003f88;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-application-form {
        padding: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input,
    .form-textarea {
        font-size: 13px;
    }

    .form-submit .form-button {
        font-size: 14px;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .job-detail-container {
        margin: 15px;
        padding: 15px;
    }

    .job-title {
        font-size: 1.8rem;
    }

    .job-meta {
        font-size: 0.85rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .job-skills li {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* Confirmation Message */
.confirmation-message {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}







/* taxonomy-job_category.php style  */


/* archive-job_listing.php style  */