html,
body {
    height: 100%;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    .jobs-list > a > ul > li {
        margin-bottom: 0;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .jobs-list > a > ul > li {
        margin-bottom: 0;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}
.container {
    width: 100%;
}
.title {
    background-color: #f1f3f5;
    padding-top: 42px;
    padding-bottom: 2px;
    height: 200px;
}
.title-with-bg {
    background-color: #f1f3f5;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 58px;
    height: 334px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title-with-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: auto;
}
.title-with-bg > * {
    color: white;
}

.pt-12 {
    padding-top: 3rem;
}
.pb-8 {
    padding-bottom: 2rem;
}
.mt-12 {
    margin-top: 3rem;
}
.bg-gray-200 {
    background-color: #e5e7eb;
}
.header-h1 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.header-h3 {
    text-align: center;
    margin-bottom: 2rem;
}
.header-h5 {
    font-weight: 500;
    line-height: 2rem;
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 6px;
}
.mb-1 {
    margin-bottom: 4px;
}
.body {
    padding-top: 1.25rem;
    padding-bottom: 2.75rem;
}
.pt-8 {
    padding-top: 2rem;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

input[type="text"],
input[type="url"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

textarea {
    height: 120px;
    resize: vertical;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

button {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button[type="reset"] {
    background-color: #e0e0e0;
    color: #333;
}

button[type="reset"]:hover {
    background-color: #d5d5d5;
}

button[type="submit"] {
    background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
    color: white;
}

button[type="submit"]:hover {
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.job-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    border: 1px solid #dce0e4;
}

.job-card:hover {
    cursor: pointer;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.job-card h2 {
    /* font-size: 1.375rem; */
    margin: 0 0 0.5rem;
    color: #007bff;
}

.job-card p {
    margin: 0.25rem 0;
    color: #333;
}

.job-card a {
    text-decoration: none;
    display: block;
}

.job-detail-container h2 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: #0a58ca;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.3rem;
}

.job-detail-container p {
    margin: 0.5rem 0;
}

ul.hover-color-black a:hover {
    color: black;
}

.jobs-list > a > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 0.5rem;
}

.jobs-list > a > ul > li {
    margin-bottom: 0;
}
.jobs-list > a > ul > li > span {
    font-weight: bold;
}

.hover-color-black .text-black {
    font-weight: 700;
    color: black;
    line-height: 20px;
    height: 22px;
    border-bottom-style: solid;
    border-bottom-color: darkred;
    border-bottom: 2px solid darkred;
}

textarea {
    padding: 0.75rem !important;
}
