body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.searchbar{
    width: 100%;
    text-align: center;
    justify-content: center;


}
input , button,select {
    margin-top: 50px;
    padding: 10px;
    border-style: solid;
    border-color: green;
    
    
    
}
.searchbar input{
    width: 50%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-right-style: none;

}
.searchbar button{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left-style: none;
    background-color: green;
    margin-left: 0;
}
select{
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-style: solid;
    border-right-style: none;
    margin-left: -100px;
    position: sticky;
    
}
button i {
    color: white;

}
#phpmg{
   
    text-align: center;
}

.job_listings {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1100px;
    margin: 20px auto;
   
}

.job_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.job {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.job:hover {
    transform: scale(1.05);
}

h2 {
    text-align: center;
    font-style: italic;
    font-weight: 1000;
    margin-bottom: 10px;
    color: #4CAF50;
    padding-bottom: 10px;
    border-bottom-style: solid; 
}

p {
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 10px;
}

.job_details{
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
}

.job_details h4 {
    margin: 0;
    color: #333;
}

.job_details p {
    margin: 0;
    color: #666;
}

.apply-btn {
    margin: 0;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
   
    
}

.apply-btn:hover {
    background-color: #45a049;
}
#remove i {
    font-size:24px;
    color:red;


}
#remove{
    float: inline-end;
    margin: 0;
    margin-left: 20px;
    padding: 0;
    border-style: none;
    background-color: #f4f4f407;
    cursor: pointer;
}

/* #idcheck {
    margin-top: 0;
    width: 5%;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

#idcheck:focus {
    width: 100px;
}

#fsearch {
    margin-top: 0;
    width: 20%;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

#fsearch:focus {
    width: 50%;
} */

@media screen and (max-width: 900px) {
    .job_row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
}
@media screen and (max-width: 800px) {
    .job_row {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .job_listings {
        max-width: 500px;
        margin: 20px auto;
       
    }
    
}
@media screen and (max-width: 650px) {
    
    .job_listings {
        max-width: 300px;
        margin: 20px auto;
       
    }
    
}