body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
}

.career-page {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
a {
            color: white;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
.job-list {
    list-style: none;
    padding: 0;
}

.job-posting {
    background-color: #1e1e1e;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-posting h3 {
    margin: 0;
}

.apply-btn {
    padding: 10px 20px;
    background-color: #6200ea;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.apply-btn:hover {
    background-color: #3700b3;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Adjust as needed */
    max-height: 80%; /* Prevent overflow beyond window height */
    overflow-y: auto; /* Enable vertical scrolling */
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.modal-content {
    max-height: 100%; /* Ensure child elements do not exceed modal size */
    overflow-y: auto; /* Add scroll for content inside the modal */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
}

/* Keyframe animation for fade-in effect */
@keyframes fadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

label {
    display: block;
    margin-top: 10px;
}

input, button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #6200ea;
    color: #ffffff;
    cursor: pointer;
}

button:hover {
    background-color: #3700b3;
}
