/* Main Wrapper */
.job-details {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Header Section */
.job-details h1 {
    font-size: 28px;
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

/* Description & Other Paragraphs */
.job-details p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333333;
}

.job-details strong {
    font-weight: 600;
    color: #444;
}

/* Unordered List */
.job-details ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.job-details ul li {
    background-color: #f9f9f9;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
}

.job-details ul li strong {
    color: #0073aa;
}

/* Links Styling */
.job-details a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.job-details a:hover {
    text-decoration: underline;
}

/* Company Logo */
.company-logo {
    margin-top: 20px;
    text-align: center;
}

.company-logo img {
    border-radius: 4px;
    border: 1px solid #ddd;
    max-width: 150px; 
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-details {
        padding: 15px;
    }

    .job-details h1 {
        font-size: 24px;
    }

    .job-details ul li {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
    }

    .company-logo img {
        max-width: 120px; 
    }
}

/* Additional Styling (Optional) */
.job-details-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.job-details-wrapper ul {
    list-style: none;
    padding: 0;
}

.job-details-wrapper ul li {
    margin-bottom: 8px;
}

.job-details-wrapper h1 {
    margin-bottom: 15px;
    font-size: 28px;
}

.job-details-wrapper .company-logo img {
    margin-top: 15px;
    border-radius: 8px;
}
