/* 图片处理工具页专用样式 */

.content-auto {
    content-visibility: auto;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.hover-scale {
    transition: all 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
}

.card-shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.crop-overlay {
    position: absolute;
    border: 1px dashed #3B82F6;
    background-color: rgba(59, 130, 246, 0.1);
    cursor: move;
}

.crop-handle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #3B82F6;
    border: 1px solid white;
}

.protected-footer {
    user-select: none;
    pointer-events: none;
}
