/**
 * Стили для инструмента LiveDraw
 */

/* Кнопка активации режима маркера */
.livedraw-activate-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.livedraw-activate-btn:hover {
    background-color: #f8f8f8;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.livedraw-activate-btn.active {
    background-color: #e6f7ff;
    border-color: #1890ff;
    color: #1890ff;
}

.livedraw-activate-btn i {
    margin-right: 5px;
}

/* Контейнер холста */
.livedraw-canvas-container {
    width: 100%;
    height: 100%;
}

/* Кнопки выбора цвета */
.livedraw-color-btn {
    cursor: pointer;
    transition: transform 0.15s ease;
    border: none;
    outline: none;
}

.livedraw-color-btn:hover {
    transform: scale(1.2);
}

/* Панель инструментов */
.livedraw-toolbar {
    min-width: 120px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .livedraw-activate-btn {
        padding: 6px 10px;
        font-size: 12px;
        bottom: 15px;
        right: 15px;
    }
    
    .livedraw-toolbar {
        min-width: 100px;
    }
} 