/* ================================================
   Existing styles (for reference)
   ================================================ */
   body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    text-align: center;
    margin: 0;
    padding: 0;
}

.jumbotron {
    background: url('../images/homepage_background1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    border: 5px black;
}

.container {
    width: 80%;
    max-width: 120%;
    background: white;
    padding: 20px;
    margin: 50px auto;
    box-shadow: 0px 0px 10px 0px gray;
    border-radius: 8px;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid gray;
}

button {
    background: blue;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: darkblue;
}

h1 {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.lead {
    display: inline-block;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

hr.my-4 {
    border-top: 2px solid white;
    width: 80%;
    margin: 10px auto;
}


footer {
    color: black; /* Override footer text to black */
}

.joblist-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    text-align: left; /* Ensure left-alignment inside columns */
}

.job-list,
.job-details {
    width: 48%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px #ccc;
}

.job-list {
    margin-right: 1%;
}

.job-item {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.job-item:hover {
    background-color: #f2f2f2;
}

.job-item h4 {
    margin: 0;
}
