/* Custom styles for the image editor */

/* Custom range input styling */
input[type="range"] {
    -webkit-appearance: none;
    height: 6px;
    background: #4b5563;
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #3b82f6;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #3b82f6;
    border-radius: 50%;
    cursor: pointer;
}

/* Canvas container */
#canvas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    position: relative;
}

/* Crop overlay */
#crop-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

#crop-selection {
    background-color: transparent;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
}

/* Drag and drop styles */
#drop-area {
    position: relative;
}

#drop-area.highlight {
    background-color: rgba(59, 130, 246, 0.2);
}

/* Animate transitions */
.transition-opacity {
    transition: opacity 0.3s ease;
}

.transition-colors {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Suggestion buttons */
.suggestion-btn {
    transition: all 0.2s ease;
}

.suggestion-btn:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #canvas-container {
        min-height: 200px;
    }
}
