/* Career List Styles */
.career_list_wrapper {
    margin: 30px 0;
}

.career_list_wrapper h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #333;
}

.career_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career_list_item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.career_list_item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #999;
}

.career_list_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.career_list_title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.career_list_description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.career_list_arrow {
    font-size: 1.5rem;
    color: #999;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.career_list_item:hover .career_list_arrow {
    transform: translateX(5px);
    color: #333;
}

.no_offerings {
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    color: #666;
}

/* Career Detail Styles */
.career_detail {
    margin: 20px 0;
}

.back_link {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 15px;
    color: #004a8f;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid #004a8f;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back_link:hover {
    background-color: #004a8f;
    color: white;
    text-decoration: none;
}

.career_detail h2 {
    margin-bottom: 30px;
    color: #222;
    font-size: 2rem;
    border-bottom: 3px solid #0066cc;
    padding-bottom: 15px;
}

.career_detail_content {
    line-height: 1.8;
    color: #333;
    font-size: 1.05rem;
}

.career_detail_content h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: #004a8f;
    font-size: 1.4rem;
    font-weight: 600;
    border-left: 4px solid #004a8f;
    padding-left: 15px;
}

.career_detail_content h4 {
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
    font-size: 1.15rem;
    font-weight: 600;
}

.career_detail_content p {
    margin-bottom: 15px;
    text-align: justify;
}

.career_detail_content ul, 
.career_detail_content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.career_detail_content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.career_detail_content ol li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.career_detail_content strong {
    color: #222;
    font-weight: 600;
}

.career_detail_content a {
    color: #004a8f;
    text-decoration: underline;
}

.career_detail_content a:hover {
    color: #004a8f;
}

.career_dates {
    margin-top: 40px;
    padding: 20px;
    background-color: #f0f8ff;
    border-left: 4px solid #004a8f;
    border-radius: 3px;
}

.career_dates p {
    margin: 8px 0;
    font-size: 1.05rem;
}

.career_apply_section {
    margin: 40px 0;
    text-align: center;
}

.apply_button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #004a8f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.2);
}

.apply_button:hover {
    background-color: #004a8f;
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}
