body {
    font-family: 'Roboto', sans-serif;
}

.custom-list {
    list-style-type: none; /* Убираем стандартные маркеры списка */
    padding: 0; /* Убираем отступы */
}

.custom-list li {
    position: relative; /* Позволяет использовать абсолютное позиционирование для галочки */
    padding-left: 20px; /* Создаем отступ для галочки */
}

.custom-list li::before {
    content: '✔'; /* Используем символ галочки */
    position: absolute; /* Абсолютное позиционирование */
    left: 0; /* Позиция слева */
    color: gray; /* Цвет галочки */
    font-size: 16px; /* Размер галочки, при необходимости измените */
    line-height: 1; /* Выравнивание по вертикали */
    transform: translateY(1px); /* Небольшая корректировка по вертикали для выравнивания */
}

        .checkbox-container {
            display: flex;
            align-items: center; /* Выравнивание по центру по вертикали */
        }

        .custom-checkbox {
            width: 15px; /* Ширина чекбокса */
            height: 15px; /* Высота чекбокса */
            border: 2px solid gray; /* Серый цвет рамки */
            display: flex;
            justify-content: center; /* Центрируем содержимое по горизонтали */
            align-items: center; /* Центрируем содержимое по вертикали */
            margin-right: 10px; /* Отступ справа от чекбокса */
            cursor: pointer; /* Курсор в виде указателя при наведении */
            position: relative; /* Позволяет использовать абсолютное позиционирование для галочки */
        }

        .custom-checkbox.checked {
            background-color: #ffffff; /* Цвет фона при отмеченном состоянии */
        }

        .custom-checkbox::after {
            content: '✔'; /* Символ галочки */
            color: gray; /* Цвет галочки */
            font-size: 16px; /* Размер галочки */
            display: none; /* Скрываем галочку по умолчанию */
            position: absolute; /* Абсолютное позиционирование */
        }

        .custom-checkbox.checked::after {
            display: block; /* Показываем галочку, если чекбокс отмечен */
        }

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
}

.modal {
    position: fixed; /* Используем фиксированное позиционирование */
    top: 10px; /* Прикрепляем к верхней части */
    right: 60px; /* Отодвигаем от правого края на 20 пикселей */
    background: #ffffff;
    border: 2px solid #ffffff;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Убедитесь, что модальное окно выше других элементов */
    width: 500px; /* Пример ширины, измените по необходимости */
    padding: 20px; /* Добавьте отступы, если нужно */
}


.modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.modal-header img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.modal-header h2 {
    font-size: 15px;
    margin: 0;
    color: #000000;
}

.whitez {
    color: #000000;
}

.pzzz {
    color: #000000;
}

.modal p {
    margin: 8px 0;
	font-weight: 400;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
}

.modal-button {
    padding: 8px 12px; /* Уменьшено с 10px 15px до 8px 12px */
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ffffff;
    margin-left: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px; /* Уменьшено с 14px до 12px */
    transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.modal-button.add {
    background-color: #0060df;
    color: #ffffff;
}

.modal-button.add:hover {
    background-color: #1057b5;
}

.modal-button.cancel {
    background-color: rgba(12,12,13,.1);
    color: #000;
    border: 1px solid #cccccc00;
}

.modal ul {
    padding-left: 20px;
}

.modal ul li {
    margin-bottom: 5px;
    color: #555;
}

.loader {
    border: 8px solid #FFFFF; /* Light grey */
    border-top: 8px solid #ffe900; /* Orange */
    border-radius: 50%;
    width: 40px; /* Размер лоадера */
    height: 40px; /* Размер лоадера */
    animation: spin 1s linear infinite; /* Анимация вращения */
    margin: auto; /* Центрирование */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
