h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* Hide the actual checkbox input */
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Style the label as a box */
.custom-checkbox {
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.checkbox-box {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.2s ease;
    background-color: white;
}

/* Hover effect */
.custom-checkbox:hover .checkbox-box {
    border-color: #bbb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Checked state */
.custom-checkbox input:checked ~ .checkbox-box {
    border-color: #4a6cf7;
    background-color: #f0f5ff;
}

/* Dot indicator for selected state */
.custom-checkbox input:checked ~ .checkbox-box:before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background-color: #4a6cf7;
    border-radius: 50%;
}

.box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.box-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6eeff;
    border-radius: 50%;
    color: #4a6cf7;
    font-weight: bold;
}

.box-label {
    font-weight: 500;
    text-align: center;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #4a6cf7;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #3a5bd7;
}

.selected-items {
    margin-top: 25px;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
}

.custom-checkbox input[disabled] + .checkbox-box,
.custom-checkbox input[disabled] + .checkbox-box .box-content {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.custom-checkbox input[disabled] + .checkbox-box {
    border: 1px dashed #ccc;
    background-color: #f9f9f9;
}

.custom-checkbox input[disabled] + .checkbox-box .box-label {
    color: #888;
    text-decoration: line-through;
}


.custom-radio input[disabled] + .radio-box,
.custom-radio input[disabled] + .radio-box .box-content {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.custom-radio input[disabled] + .radio-box {
    border: 1px dashed #ccc;
    background-color: #f9f9f9;
}

.custom-radio input[disabled] + .radio-box .box-label {
    color: #888;
    text-decoration: line-through;
}


.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* Hide the actual checkbox input */
.custom-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Style the label as a box */
.custom-radio {
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.radio-box {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.2s ease;
    background-color: white;
}

/* Hover effect */
.custom-radio:hover .radio-box {
    border-color: #bbb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Checked state */
.custom-radio input:checked ~ .radio-box {
    border-color: #4a6cf7;
    background-color: #f0f5ff;
}

/* Dot indicator for selected state */
.custom-radio input:checked ~ .radio-box:before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background-color: #4a6cf7;
    border-radius: 50%;
}

.loaderMeetingShift {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

.statusOfItem.statusOfItemSuccess {
    background-color: rgba(0, 128, 0, 0.2);
}

.statusOfItem.statusOfItemUnsuccess {
    background-color: rgba(128, 0, 0, 0.2);
}

.messageOfMeetingItem {
    color: #6c757d;
    font-size: 15px;
}

.statusOfItem {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    line-height: 1;
    padding: 4px;
    width: 25px;
    height: 25px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loaderMeetingShift::before, .loaderMeetingShift::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #000000;
    animation: prixClipFix 2s linear infinite;
}

.loaderMeetingShift::after {
    border-color: #FF3D00;
    animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
    inset: 6px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }
    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }
    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }
    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }
    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}