﻿.custom-checkbox {
    appearance: none;
   /* width: 18px;
    height: 18px;
    border: 2px solid #007bff;
    border-radius: 3px;*/
    display: inline-block;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

.custom-checkbox:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.custom-checkbox:checked::after {
    content: '\2713';
    font-size: 14px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label {
    font-size: 14px;
    margin-left: 8px;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
}

.progress-bar-container {
    display: flex;
    height: 12px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    width: 100px;
}

.scrollable-checkbox-list {
    max-height: 200px; /* Set desired height */
    overflow-y: auto; /* Enable vertical scroll */
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.checkbox-inner .form-check {
    margin-bottom: 5px;
}

.checkbox-inner label {
    display: block;
    margin-bottom: 3px;
    font-weight: normal;
}


