/*
 * Styles for the frontend recruitment list table.
 */
.recruitment-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.recruitment-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.recruitment-table th, .recruitment-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.recruitment-table thead th {
    background-color: #f2f2f2;
    color: #333;
    font-weight: bold;
}

.recruitment-table tbody tr:hover {
    background-color: #f9f9f9;
}

.recruitment-table a {
    text-decoration: none;
    color: #0073aa;
    transition: color 0.2s;
}

.recruitment-table a:hover {
    color: #005177;
}

/* Style for the 'Apply Now' GIF to make it smaller. */
.recruitment-apply-gif {
    width: 60px; /* Adjust this value to change the width */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle;
    margin-left: 5px;
}

.recruitment-load-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.recruitment-load-more-btn:hover {
    background-color: #005177;
}
