/* modules/tiktok/assets/tiktok.css - Minimal Override */

/* Only essential TikTok-specific overrides */
.uvd-tiktok-downloader {
    /* Ensure clean white theme - override any inherited styles */
    background: #ffffff !important;
    color: #333333 !important;
    background-image: none !important;
}

/* Remove any pseudo-elements that might cause layout issues */
.uvd-tiktok-downloader::before,
.uvd-tiktok-downloader::after {
    display: none !important;
}

/* TikTok brand color for icon */
.uvd-tiktok-downloader .uvd-icon {
    background: #ff0050 !important;
}

/* Layout fixes to prevent sidebar issues */
.uvd-tiktok-downloader {
    clear: both !important;
    width: 100% !important;
    box-sizing: border-box !important;
    float: none !important;
    position: static !important;
}

/* Disable any complex animations */
.uvd-tiktok-downloader * {
    animation-duration: 0.3s !important;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .uvd-tiktok-downloader {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}