/* Job Detail Page Styles */
.job-header {
    margin-top: 20px;
    padding: 30px;
    border: 2px solid #000;
    background-color: #fff;
}

.job-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #000;
}

.company-logo {
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    border-radius: 4px;
    object-fit: contain;
    background-color: #f9f9f9;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border: 2px solid #000;
    background-color: #f0f0f0;
    font-size: 14px;
    font-weight: bold;
}

.meta-item-icon {
    font-size: 16px;
}

.job-content {
    margin-top: 30px;
    padding: 30px;
    border: 2px solid #000;
    background-color: #fff;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}

.description {
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.description p {
    margin-bottom: 15px;
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.description h2 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 15px;
}

.description h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 12px;
}

.description ul,
.description ol {
    margin: 15px 0;
    padding-left: 30px;
}

.description li {
    margin-bottom: 8px;
    font-size: 15px;
}

.tags-section {
    margin-top: 25px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 12px;
    border: 1px solid #000;
    background-color: #fff;
    font-size: 13px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill {
    padding: 8px 15px;
    border: 2px solid #000;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.apply-section {
    margin-top: 30px;
    padding: 30px;
    border: 2px solid #000;
    background-color: #ffffcc;
    text-align: center;
}

.apply-button {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #000;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.external-badge {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #666;
    background-color: #f9f9f9;
    color: #666;
    font-size: 12px;
    margin-left: 10px;
}