.elementor-6371 .elementor-element.elementor-element-0a7fe7c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-25cf57f *//* Main Container Styling */
.job-post-container {
    max-width: 900px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styling */
.job-header {
    text-align: center;
    background-color: #004080; /* Medical Blue */
    color: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.job-header h1 {
    margin: 0;
    font-size: 26px;
    letter-spacing: 1px;
}

.job-header p {
    margin: 10px 0 0 0;
    font-size: 16px;
    font-weight: bold;
}

/* Grid for Side-by-Side Tables */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

/* Section Headings */
.job-section {
    margin-bottom: 25px;
}

.job-section h2 {
    color: #004080;
    border-bottom: 2px solid #ff4500; /* Orange accent */
    padding-bottom: 10px;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Tables Styling */
.job-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.job-table th {
    background-color: #f1f1f1;
    color: #333;
    font-weight: bold;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.job-table td {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 15px;
    color: #444;
}

.job-table tr:nth-child(even) {
    background-color: #fafafa;
}

.table-hover tbody tr:hover {
    background-color: #f5f5f5;
}

/* List Styling */
.job-list {
    list-style-type: disc;
    padding-left: 25px;
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

/* Buttons and Links Styling */
.job-links-section {
    text-align: center;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e2e6ea;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-success {
    background-color: #28a745;
}
.btn-success:hover {
    background-color: #218838;
}

.btn-secondary {
    background-color: #6c757d;
}
.btn-secondary:hover {
    background-color: #5a6268;
}

/* Responsive Design for Mobile Devices */
@media screen and (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
        box-sizing: border-box;
    }
}/* End custom CSS */