body {
    background-color: #ffffff; /* White background for the entire page */
}

.how-to-apply-image {
    margin: 15px 0;
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.how-to-apply-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.detail-value img {
    max-width: 100%;
    height: auto;
}

.apply-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 10px;
}

.apply-button:hover {
    background-color: #45a049;
}

.social-share-buttons {
    margin: 20px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-share-buttons a {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.social-share-buttons a i {
    margin-right: 8px;
}

.facebook-share {
    background-color: #3b5998;
}

.whatsapp-share {
    background-color: #25d366;
}

.job-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 30px;
}

.job-main-content {
    flex: 1;
}

.job-sidebar {
    width: 300px;
}

.job-header {
    margin-bottom: 30px;
}

.job-title {
    color: #1a4b8c;
    font-size: 28px;
    margin-bottom: 10px;
}

.detail-pair {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.detail-label {
    width: 200px;
    font-weight: bold;
    color: #ed2f0a;
}

.detail-value {
    flex: 1;
}

.section-title {
    color: #1a4b8c;
    border-bottom: 2px solid #1a4b8c;
    padding-bottom: 5px;
    margin: 30px 0 20px;
    font-size: 22px;
}

.sidebar-widget {
    background: #f5f9ff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    color: #1a4b8c;
    margin-top: 0;
}

.latest-jobs-list,
.popular-jobs-list {
    list-style: none;
    padding: 0;
}

.latest-jobs-list li,
.popular-jobs-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e1e5eb;
}

.latest-jobs-list li a,
.popular-jobs-list li a {
    color: #333;
    text-decoration: none;
}

.latest-jobs-list li a:hover,
.popular-jobs-list li a:hover {
    color: #1a4b8c;
}

.back-button {
    display: inline-block;
    background: #1a4b8c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}

.back-button:hover {
    background: #2a6496;
}

.debug-info {
    background: #ffe6e6;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ff0000;
}

@media (max-width: 768px) {
    .job-details-container {
        flex-direction: column;
    }

    .job-sidebar {
        width: 100%;
    }

    .detail-pair {
        flex-direction: column;
    }

    .detail-label {
        width: 100%;
        margin-bottom: 5px;
    }
}

.responsive-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.job-main-content {
    flex: 3;
}

.mobile-sidebar-widgets {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .responsive-wrapper {
        flex-direction: column;
    }

    .job-main-content,
    .mobile-sidebar-widgets {
        width: 100%;
    }
}