
main {
    padding-top: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
section {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.job-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.job-table th, .job-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.job-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.job-description {
    display: none;
    padding: 15px;
    border: 1px solid #ddd;
    max-height: 300px;
    overflow-y: auto;
    background-color: #f9f9f9;
}



.job-description h3 {
    margin-top: 0;
}

.job-description p {
    white-space: pre-line;
}

/* Modal Styling */
.modal {
    visibility: hidden;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    justify-content: center;
    align-items: center;
}
@-moz-document url-prefix() {
    .modal-content {
     background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 50%; /* Adjust the width as necessary */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease-in-out;    /* Apply Firefox-specific styles if needed */
    }
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 50%; /* Adjust the width as necessary */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease-in-out;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Button Styling */
.rounded-button {
    background-color: maroon;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rounded-button:hover {
    background-color: darkred;
}

/* General Styling */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="file"] {
    width: 60%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}


