body {
    /* background-color: skyblue; */
    /* background-color: red; */
}

/* Gradient Header */
.custom-header {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    border: none;
    border-radius: 8px;
}

/* Custom Card Styling */
.custom-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Table Header Styling */
.custom-table-header {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
}

/* Hover Effect for Table Rows */
.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

/* Button Styling */
.btn-light {
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #fff;
    color: #224abe !important;
    transform: translateY(-1px);
}

.job-item, .candidate-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.job-item:last-child, .candidate-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-details, .candidate-details {
    flex-grow: 1;
}

.job-date, .candidate-status {
    white-space: nowrap;
}

.lh-md{
line-height: 1.5 !important;
}