/* Job Details Main Container */
.job-details-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-family: "Segoe UI", Tahoma, sans-serif;
    color: #333;
}

/* Page Title */
.job-details-container h1 {
    font-size: 28px;
    margin-bottom: 5px;
    color: #1e3c72;
    font-weight: 700;
}

/* Job Main Title (Job Name) */
.job-details-container h3 {
    font-size: 22px;
    color: #555;
    margin-bottom: 25px;
}

/* Flex Container for Left & Right */
.jb {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px;
}

/* Left + Right Columns */
.jdleft, .jdright {
    width: 48%;
}

.jdleft h2, .jdright h2, 
.jddown h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1e3c72;
    font-weight: 600;
}

.jdleft p, .jdright p, 
.jddown p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

/* Bottom Section */
.jddown {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

/* Back Button */
.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 22px;
    background: #1e3c72;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: #15305a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .jb {
        flex-direction: column;
    }

    .jdleft, .jdright {
        width: 100%;
    }

    .job-details-container {
        padding: 20px;
    }

    .job-details-container h1 {
        font-size: 24px;
    }
}
