body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #003366;
    margin-top: 20px;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
}

#job-list, #admin-form, #apply-form {
    width: 80%;
    max-width: 900px;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

#job-list:hover, #admin-form:hover, #apply-form:hover {
    transform: translateY(-5px);
}

#job-list div, form > div {
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

#job-list div:hover {
    transform: scale(1.02);
}

#job-list div h2 {
    font-size: 20px;
    margin: 0;
    color: #003366;
}

#job-list div p {
    margin: 5px 0;
    color: #666;
    font-size: 1rem;
}

#job-list div a {
    text-decoration: none;
    color: #ff0000;
    font-weight: bold;
    transition: color 0.3s;
}

#job-list div a:hover {
    color: #d40000;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

input, textarea, button {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
}

input, textarea {
    border: 1px solid #ccc;
    transition: border 0.3s;
}

input:focus, textarea:focus {
    border-color: #003366;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 51, 102, 0.5);
}

button {
    background-color: #003366;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #ff0000;
    transform: scale(1.05);
}

#job-detail-container {
    display: flex;
    flex-direction: row;
    max-width: 900px;
    width: 100%;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#job-detail-container #job-summary {
    width: 30%;
    padding: 20px;
    background-color: #003366;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 5px solid #ff0000;
}

#job-detail-container #job-summary h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

#job-detail-container #job-summary p {
    margin: 5px 0;
    font-size: 1rem;
}

#job-detail-container #job-summary button {
    background-color: #ff0000;
    width: auto;
    padding: 12px 20px;
    margin-top: 20px;
    align-self: center;
}

#job-detail-container #job-summary button:hover {
    background-color: #d40000;
}

#job-detail-container #job-content {
    width: 70%;
    padding: 20px;
    font-size: 1rem;
}

#job-detail-container #job-content h1 {
    font-size: 26px;
    color: #003366;
    margin-bottom: 15px;
}

#job-detail-container #job-content p {
    margin: 15px 0;
    color: #666;
    line-height: 1.6;
}

.apply-form {
    margin-top: 20px;
}

.apply-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}

.apply-form input,
.apply-form textarea {
    width: calc(100% - 22px);
    margin-top: 5px;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}

.apply-form button {
    width: 100%;
    margin-top: 20px;
}
