/* CSS Module cho tab Blend Effects */

/* Container chính cho tab blend */
#tab-blend-effects {
    padding: 8px 5px;
}

/* Nhóm các điều khiển */
#tab-blend-effects .style-group {
    margin-bottom: 12px;
}

/* Hàng điều khiển */
#tab-blend-effects .style-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

/* Label cho các điều khiển */
#tab-blend-effects .style-label {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #495057;
    font-weight: 500;
    flex: 0 0 auto;
    min-width: 100px;
}

/* Icon trong label */
#tab-blend-effects .style-icon {
    margin-right: 6px;
    font-size: 0.9rem;
}

/* Container cho thanh trượt */
#tab-blend-effects .style-slider-container {
    width: 100%;
    flex: 1;
    max-width: calc(100% - 110px);
    margin-left: 10px;
}

/* Container cho dropdown */
#tab-blend-effects .style-select-container {
    width: 100%;
    flex: 1;
    max-width: calc(100% - 110px);
    margin-left: 10px;
}

/* Dropdown select */
#tab-blend-effects .style-select {
    width: 100%;
    padding: 6px 8px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    background: white;
    font-size: 0.8rem;
    color: #495057;
    transition: all 0.2s ease;
}

#tab-blend-effects .style-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

/* Thanh trượt */
#tab-blend-effects .style-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    outline: none;
    -webkit-appearance: none;
    transition: all 0.2s ease;
}

#tab-blend-effects .style-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,123,255,0.3);
    transition: all 0.2s ease;
}

#tab-blend-effects .style-slider::-webkit-slider-thumb:hover {
    background: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0,123,255,0.4);
}

#tab-blend-effects .style-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,123,255,0.3);
}

/* Color picker */
#tab-blend-effects .style-color-picker {
    width: 30px;
    height: 30px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    background: none;
    margin-left: auto;
}

#tab-blend-effects .style-color-picker:hover {
    border-color: #007bff;
    transform: scale(1.05);
}

/* Nút preset */
#tab-blend-effects .blend-preset-btn {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-size: 0.75rem;
    padding: 6px 4px;
    border: none;
    transition: all 0.2s ease;
}

#tab-blend-effects .blend-preset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Ẩn các phần tử hiển thị giá trị */
#blendModeValue, #overlayOpacityValue, #lightingEffectValue, 
#shadowEffectValue, #filterEffectValue, #filterIntensityValue {
    display: none;
} 