.image-flip-rotate .upload-area {
    background: #f8fafc;
    padding: 32px 28px;
    border-radius: 16px;
    border: 2px dashed #e2e8f0;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.25s ease;
}

.image-flip-rotate .upload-area:hover {
    border-color: #3b82f6;
    background: #f0f5ff;
}

.image-flip-rotate .upload-area input[type="file"] {
    padding: 12px;
    width: 100%;
    max-width: 300px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.image-flip-rotate .upload-hint {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 8px;
}

.image-flip-rotate .preview-area {
    margin: 20px 0;
}

.image-flip-rotate .image-container {
    margin: 16px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    background: #f8fafc;
}

.image-flip-rotate .image-container img {
    max-width: 100%;
    max-height: 400px;
    display: block;
    margin: 0 auto;
}

.image-flip-rotate .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.image-flip-rotate .button-group button {
    padding: 10px 18px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

.image-flip-rotate .button-group button:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.image-flip-rotate .button-group .clear-btn {
    background: #64748b;
}

.image-flip-rotate .button-group .clear-btn:hover {
    background: #475569;
}

.image-flip-rotate .result-area {
    margin-top: 24px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    text-align: center;
}

.image-flip-rotate .result-area .image-container {
    margin: 0 0 16px 0;
}

.image-flip-rotate .primary-btn {
    padding: 12px 28px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Outfit', sans-serif;
}

.image-flip-rotate .primary-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}