/* Jobs Table Styling */
.jobs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.jobs-table th {
    background-color: #02518D;
    color: white;
    padding: 12px;
}

.jobs-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align:center;
}
.job-table tr{
      text-align:center;
}
.jobs-table tr:hover {
    background-color: #f8f8f8;
}

/* View Job Button */
.show-job-btn {
   
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.show-job-btn:hover {
    background-color: #c7181e;
}

/* Job Details */
#job-details {
    border: 1px solid #ddd;
    padding: 20px;
    background: white;
    border-radius: 6px;
}

/* Apply Form */
#apply-form label {
    font-weight: 600;
    color: #02518D;
}
#apply-form input, #apply-form textarea {
    border: 1px solid #ccc;
    padding: 8px;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}

#apply-form button {
    
    background-color: #02518D!important;
    font-size: 18px;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px!important;
    cursor: pointer;
}
#apply-form button:hover {
    background-color: #01395f;
}
#apply-job-btn{
    background:#02518D;
}