body {
    font-family: "DM Serif Text", serif;
    margin: 20px;
    background-color: #f9f9f9;
}
.serif4{
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
a{
    color: #25568f;
    text-decoration: none;
}
a:hover{
    color: #3b77bd;
    text-decoration: underline;
}
p{
    font-weight: 400;
    font-size: 14px;
    font-family: "Source Serif 4", serif;
}

h1 {
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 10px 15px;
    background-color: #102236;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 150px;
    font-size: 18px;
    font-family: "Source Serif 4", serif;
}

button:hover {
    background-color: #0056b3;
}
.button-area{
    width: 100%;
    display: inline-block;
    text-align: center;
}

#results {
    margin-top: 20px;
}

.result-item {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f8f8;
}

.spinner {
    margin: 20px auto;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: #102236;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#loading {
    display: none;
    text-align: center;
    color: #333;
    font-size: 16px;
}
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 220px;
    height: auto;
}
.role-text{
    font-size: 16px;
    line-height: 24px;
}
.salary-text{
}
.job-list{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
