body {
    background-color: #f8f9fa;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.card {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

.card-title {
    color: #007bff;
}

/* Specific styles for KYC verification page */
.kyc-card .card-title {
    color: #008080;
    border-bottom: 2px solid #008080;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 600;
}
.kyc-sidebar {
    border-right: 1px solid #eee;
    padding-right: 20px;
}
.kyc-sidebar .nav-link {
    color: #333;
    padding: 8px 0;
}
.kyc-sidebar .nav-link.active {
    color: #008080;
    font-weight: bold;
}
.kyc-sidebar .nav-link .circle {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}
.kyc-sidebar .nav-link.active .circle {
    background-color: #008080;
    border-color: #008080;
}
.captcha-img {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 5px;
    background-color: #f0f0f0;
    width: 150px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #555;
    margin-top: 10px;
    margin-bottom: 10px;
}
.otp-input-group .form-control {
    width: 50px;
    text-align: center;
    margin-right: 10px;
}
.otp-input-group .form-control:last-child {
    margin-right: 0;
}

/* Star Rating */
.star-rating {
    display: inline-block;
    unicode-bidi: bidi-override;
    direction: rtl;
}
.star-rating > input {
    display: none;
}
.star-rating > label {
    font-size: 25px;
    color: #ccc;
    cursor: pointer;
    padding: 0 2px;
}
.star-rating > input:checked ~ label,
.star-rating > input:checked ~ label ~ label {
    color: #ffc107; /* Gold color for selected stars */
}
.star-rating > label:hover,
.star-rating > label:hover ~ label {
    color: #ffc107;
}
.star-rating > input:checked + label:hover,
.star-rating > input:checked + label:hover ~ label,
.star-rating > input:checked ~ label:hover,
.star-rating > input:checked ~ label:hover ~ label {
    color: #ffc107;
}

/* Styles for the application option radio buttons */
.form-check-inline {
    margin-right: 1rem; /* Add some spacing between options */
}

.form-check-input[type="radio"] {
    /* Make the actual radio button visible */
    display: inline-block;
    opacity: 1;
    position: relative;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.form-check-label {
    padding: 0.5rem 1rem;
    /* border: 1px solid #ced4da;
    border-radius: 0.25rem; */
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    /* background-color: #f8f9fa; */
    color: #495057;
}

.form-check-input[type="radio"]:checked + .form-check-label {
    background-color: transparent; /* No background color */
    color: #008080; /* Dark text color for visibility */
    border-color: #008080;
    font-weight: bold;
}

.form-check-label:hover {
    background-color: #e2e6ea;
}

.rating-label-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px; /* Ensure consistent width for each rating option */
}

.rating-label-group .rating-star {
    font-size: 1.5rem; /* Slightly smaller stars for compactness */
    color: #ddd;
}

.rating-label-group .rating-text {
    font-size: 0.7rem; /* Smaller text for compactness */
    color: #777;
    margin-top: 2px;
}

input[type="radio"]:checked + .rating-label-group .rating-star {
    color: #f5b301;
}

.d-flex.justify-content-between.align-items-center {
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.d-flex.justify-content-between.align-items-center > label {
    flex-basis: auto; /* Allow label to take necessary width */
    margin-right: 1rem; /* Space between label and rating group */
}

.d-flex.justify-content-between.align-items-center > div.d-flex {
    flex-grow: 1; /* Allow rating group to take remaining space */
    justify-content: flex-end; /* Align rating stars to the right */
}

/* Styles for shortlist_candidates.html */
.card.mb-4 {
    margin-bottom: 2rem !important; /* Add more space below the filter card */
}

.table-responsive table.table th,
.table-responsive table.table td {
    padding: 0.75rem; /* Increase padding for better readability */
    vertical-align: middle;
}

.table-responsive table.table-hover tbody tr:hover {
    background-color: #f1f1f1; /* Subtle hover effect */
}