/* Стили для кнопки списка */
.list-icon {
    position: fixed;
    bottom: 20px;
    left: 70px; /* Сдвигаем правее от кнопки настроек */
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.list-icon:hover {
    transform: rotate(15deg);
}

.list-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Стили для модального окна */

.modal-content {
    display: flex;
    gap: 30px;
}

.column {
    flex: 1;
}

.column h4 {
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.input-list {
    margin-bottom: 15px;
}

.input-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.input-item input {
    flex: 0;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.input-item .input-team {
    width: 90px;
}

.add-btn {
    width: 30px;
    height: 30px;
    background: #28a745;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s ease;
}

.add-btn:hover {
    background: #218838;
}

.delete-btn {
    width: 25px;
    height: 25px;
    background: #dc3545;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.3s ease;
}

.delete-btn:hover {
    background: #c82333;
}

.clear-btn {
    width: 100%;
    padding: 8px 12px;
    background: #ffc107;
    border: none;
    border-radius: 5px;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.clear-btn:hover {
    background: #e0a800;
}