/* ================================================================================================
// 	File Name: style.scss
// 	Description: Style for customization.
// 	----------------------------------------------------------------------------------------------
// 	Item Name: Chameleon Admin - Modern Bootstrap 4 WebApp & Dashboard HTML Template + UI Kit
// 	Version: 1.0
// 	Author: ThemeSelection
// 	Author URL: https://themeselection.com/
// ================================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */
#vacanciesTable thead{
    display:none!important;
}
table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
#clientFilter{
    padding:10px!important;
}
.expand-btn {
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
}
.candidate-row {
    display: none;
    background-color: #f9f9f9;
}
.candidate-row.show {
    display: table-row;
}
.status-cv-sent {
    background-color: #FFF9C4;  /* Light yellow */
}

.status-failed {
    background-color: #FFCDD2;  /* Light red */
}

.status-first-interview, .status-live {
    background-color: #C8E6C9;  /* Light green */
}

.status-second-interview {
    background-color: #B2DFDB;  /* Light teal */
}

.status-offer {
    background-color: #BBDEFB;  /* Light blue */
}

.status-placed {
    background-color: #D1C4E9;  /* Light purple */
}

.status-default {
    background-color: #F5F5F5;  /* Light grey */
}