.custom-tooltip {
    position: fixed;
    background: #222;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    z-index: 9999;
}

.rotatable-preview-container {
    width: 100%;
}

.rotatable-preview-container .rotate-preview-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rotate-preview {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f9f9f9;
}

.rotate-preview img {
    transition: transform 0.25s ease;
    will-change: transform;
}

.rotate-controls {
    display: flex;
    gap: 5px;
}

.rotate-controls button {
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    padding: 5px;
    line-height: 1;
}

.rotate-controls button:hover {
    background: #f0f0f0;
}