/**
 * OpenMontage Pavo-AI 流式卡片创作控制台样式 (Standalone 专属版)
 *
 * 视觉要求：浅色清新毛玻璃现代风格，严格禁止蓝-紫渐变色。
 * 文字字号约束：最小字号为 14px，标题标题合理放大。
 * 布局要求：AI 对话输入框不固定吸底，采用居中流式卡片自然排版。
 * @package OpenMontageWP
 */

/* ==========================================
   1. 基础重置与滚动环境
   ========================================== */
.om-pavo-body-wrap {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh !important;
    width: 100vw !important;
    overflow-x: hidden !important;
    overflow-y: auto !important; /* 恢复自然滚动 */
    background-color: #f8fafc;
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#om-pavo-app.om-pavo-layout {
    display: flex !important;
    flex-direction: row !important; /* 强制水平双栏：左边窄边栏，右边主工作区 */
    min-height: 100vh !important;
    background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 45%),
                radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 45%),
                #f8fafc !important;
    color: #334155 !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* ==========================================
   1.5 Pavo 经典垂直窄导航菜单栏
   ========================================== */
#om-pavo-app .pavo-left-navbar {
    width: 80px !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    border-right: 1px solid rgba(226, 232, 240, 0.8) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 200 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 24px 0 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

#om-pavo-app .navbar-brand {
    width: 44px !important;
    height: 44px !important;
    background: #10b981 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3) !important;
    margin-bottom: 20px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
#om-pavo-app .navbar-brand:hover {
    transform: scale(1.05) !important;
    background: #059669 !important;
}

#om-pavo-app .brand-logo-text {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
}

#om-pavo-app .navbar-menu-group, #om-pavo-app .navbar-footer-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
}

#om-pavo-app .pavo-left-navbar .menu-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 10px 0 !important;
    text-decoration: none !important;
    color: #64748b !important;
    width: 100% !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

#om-pavo-app .pavo-left-navbar .menu-item .menu-icon {
    font-size: 28px !important; /* 图标放大 */
    transition: transform 0.2s ease !important;
    display: inline-block !important;
}

#om-pavo-app .pavo-left-navbar .menu-item .menu-text {
    font-size: 15px !important; /* 字号增大 */
    font-weight: 500 !important;  /* 不加粗 */
    display: inline-block !important;
}

#om-pavo-app .pavo-left-navbar .menu-item:hover, #om-pavo-app .pavo-left-navbar .menu-item.active {
    color: #10b981 !important;
}

#om-pavo-app .pavo-left-navbar .menu-item:hover .menu-icon {
    transform: scale(1.15) !important;
}

#om-pavo-app .pavo-left-navbar .menu-item.active .menu-icon {
    transform: scale(1.1) !important;
}

#om-pavo-app .user-avatar-blue {
    background: rgba(59, 130, 246, 0.08) !important;
    color: #3b82f6 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important; /* 调整小人尺寸 */
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    transition: all 0.2s ease !important;
}

#om-pavo-app .om-user-avatar-btn:hover .user-avatar-blue,
#om-pavo-app .om-trigger-login-modal:hover .user-avatar-blue {
    background: #3b82f6 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.25) !important;
}

/* 右侧主工作区容器 */
#om-pavo-app .om-pavo-main-container {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}

/* ==========================================
   2. 顶部导航状态栏
   ========================================== */
.om-pavo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    height: 70px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 100;
}

.pavo-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pavo-logo-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pavo-pulse 2s infinite;
}

.pavo-logo-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.pavo-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pavo-top-points {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 14px;
    color: #d97706;
}

.pavo-top-points strong {
    font-size: 16px;
    font-weight: 800;
}

.pavo-top-charge-btn {
    font-size: 14px;
    background: #f59e0b;
    color: #ffffff !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}
.pavo-top-charge-btn:hover {
    background: #d97706;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.pavo-top-login-btn {
    font-size: 14px;
    color: #1e293b !important;
    background: rgba(15, 23, 42, 0.06);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
}
.pavo-top-login-btn:hover {
    background: rgba(15, 23, 42, 0.1);
}

/* ==========================================
   3. 主体流式排版区
   ========================================== */
.om-pavo-flow-main {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px 80px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 3.1 头部 Hero 区 */
.pavo-flow-hero {
    text-align: center;
    margin-top: 10px;
}

.pavo-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0;
}

/* 3.2 核心输入卡片 (Pavo 经典款式) */
.pavo-creation-card-container {
    width: 100%;
}

.pavo-creation-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    box-sizing: border-box;
}

/* 微微倾斜的主角素材上传区 */
.pavo-ref-upload-slot {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    border: 1.5px dashed rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.02);
    cursor: pointer;
    flex-shrink: 0;
    transform: rotate(-8deg); /* 仿截图倾斜设计 */
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pavo-ref-upload-slot:hover {
    transform: rotate(0deg) scale(1.08);
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.slot-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cbd5e1'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E") no-repeat center/50% #f1f5f9;
}

.slot-avatar-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slot-plus {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(16, 185, 129, 0.3);
}

/* 右侧核心输入 */
.pavo-creation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pavo-creation-textarea-wrap {
    width: 100%;
}

.pavo-creation-textarea-wrap textarea {
    width: 100%;
    background: transparent;
    border: none;
    resize: none;
    color: #1e293b;
    font-size: 16px;
    outline: none;
    line-height: 1.6;
    min-height: 50px;
    font-family: inherit;
    box-sizing: border-box;
}
.pavo-creation-textarea-wrap textarea::placeholder {
    color: #94a3b8;
}

/* 底部功能条 */
.pavo-creation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.pavo-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pavo-select-pill {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    color: #475569;
}

.pavo-select-pill label {
    font-weight: 700;
    margin-right: 4px;
}

.pavo-select-pill select {
    background: transparent;
    border: none;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    padding-right: 4px;
}

/* 右下角圆形发送按钮 */
.pavo-action-wrap {
    display: flex;
    align-items: center;
}

.pavo-send-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #cbd5e1; /* 默认置灰，截图为灰色 */
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.pavo-send-circle-btn svg {
    width: 20px;
    height: 20px;
}

/* 当输入框有内容时由 JS 激活 active 颜色，或者直接悬浮高亮 */
.pavo-send-circle-btn:hover {
    background: #10b981;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.pavo-uploaded-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.pavo-uploaded-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.pavo-uploaded-item .item-remove {
    cursor: pointer;
    color: #ef4444;
    font-weight: 700;
}

/* ==========================================
   4. 四个彩色大功能胶囊入口 (精仿 Pavo 下方卡片)
   ========================================== */
.pavo-features-grid-container {
    width: 100%;
}

.pavo-features-grid {
    display: flex;
    gap: 20px;
    width: 100%;
}

.feature-capsule {
    flex: 1;
    height: 110px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}



.feature-capsule-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transition: transform 0.4s ease !important;
    filter: brightness(0.95) !important;
    z-index: 0 !important;
}

.feature-capsule:hover .feature-capsule-bg {
    transform: scale(1.08) !important;
}

/* 提供深色背景遮罩，使浅色文字明显 */
.feature-capsule::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4)) !important;
    z-index: 1 !important;
}

.feature-label {
    position: absolute !important;
    bottom: 16px !important;
    left: 20px !important;
    font-size: 18px !important; /* 标题合理放大 */
    font-weight: 700 !important;
    color: #ffffff !important;
    z-index: 2 !important;
}

.feature-capsule:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    filter: brightness(1.08);
}

/* 4个卡片的特定颜色背景 (使用优雅高质感渐变色代替 jpg 图片，杜绝 404 且保障现代艺术感) */
.f-story { 
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); 
}
.f-agent { 
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); 
}
.f-image { 
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); 
}
.f-video { 
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); 
}

/* ==========================================
   5. 正在生成中的任务进度列表 (原位气泡流)
   ========================================== */
.pavo-active-tasks-container {
    width: 100%;
}

.pavo-chat-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pavo-chat-row {
    display: flex;
    gap: 14px;
    max-width: 90%;
}

.pavo-chat-row-ai {
    align-self: flex-start;
}

.pavo-chat-row-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.pavo-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pavo-chat-bubble {
    padding: 16px 20px;
    border-radius: 16px;
    line-height: 1.6;
    font-size: 14px; /* 最小 14px */
    position: relative;
    word-break: break-all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.pavo-chat-row-ai .pavo-chat-bubble {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: #334155;
    border-top-left-radius: 2px;
}

.pavo-chat-row-user .pavo-chat-bubble {
    background: #10b981;
    color: #ffffff;
    border-top-right-radius: 2px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.pavo-quick-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.pavo-quick-item {
    font-size: 14px; /* 最小 14px */
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    color: #475569;
    transition: all 0.2s ease;
}
.pavo-quick-item:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: #10b981;
    color: #10b981;
}

/* 进度检测卡片 */
.pavo-task-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    margin-top: 10px;
    min-width: 320px;
}

.pavo-task-title {
    font-weight: 700;
    font-size: 14px; /* 最小 14px */
    color: #0f172a;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.pavo-task-bar-bg {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.pavo-task-bar-fill {
    height: 100%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    transition: width 0.4s ease;
}

.pavo-task-status-txt {
    font-size: 14px; /* 最小 14px */
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pavo-status-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.pavo-link-btn {
    color: #10b981 !important;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px; /* 最小 14px */
}

/* 成品视频卡片 */
.pavo-result-video-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-top: 10px;
    max-width: 500px;
}

.pavo-result-player video {
    width: 100%;
    border-radius: 8px;
    background: #000;
    max-height: 280px;
    display: block;
}

.pavo-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.pavo-result-btn {
    flex: 1;
    min-width: 110px;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px; /* 最小 14px */
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pavo-result-btn-main {
    background: #10b981;
    color: #ffffff !important;
}
.pavo-result-btn-main:hover {
    background: #059669;
}

.pavo-result-btn-sub {
    background: #ffffff;
    color: #475569 !important;
    border: 1px solid #e2e8f0;
}
.pavo-result-btn-sub:hover {
    background: #f1f5f9;
}

/* ==========================================
   6. 灵感与历史作品画廊 (瀑布流网格)
   ========================================== */
.pavo-gallery-container {
    width: 100%;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding: 40px 60px 80px 60px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .pavo-gallery-container {
        padding: 30px 20px 60px 20px;
    }
}

.gallery-remix-btn:hover {
    background: rgba(16, 185, 129, 0.15) !important;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.15);
    transform: translateY(-1px);
}


.gallery-header {
    margin-bottom: 24px;
    text-align: center;
}

.gallery-title {
    font-size: 20px; /* 标题合理放大 */
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.pavo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

.gallery-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}

.gallery-media-box {
    width: 100%;
    height: 160px;
    background: #f1f5f9;
    overflow: hidden;
}

.gallery-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-media-box img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-tag {
    align-self: flex-start;
    font-size: 14px; /* 最小 14px */
    background: rgba(16, 185, 129, 0.06);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
}

.info-prompt {
    font-size: 14px; /* 最小 14px */
    color: #475569;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
}

.info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    margin-top: 4px;
}

.gallery-play-btn {
    font-size: 14px; /* 最小 14px */
    color: #10b981 !important;
    font-weight: 700;
    text-decoration: none;
}
.gallery-play-btn:hover {
    text-decoration: underline;
}

.info-status {
    font-size: 14px; /* 最小 14px */
    font-weight: 600;
}

.status-completed, .status-done { color: #10b981; }
.status-failed, .status-fail { color: #ef4444; }
.status-queued, .status-pending { color: #f59e0b; }

.gallery-empty-tip {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    font-size: 14px; /* 最小 14px */
    color: #64748b;
    border: 1.5px dashed #e2e8f0;
    border-radius: 16px;
    box-sizing: border-box;
}

/* ==========================================
   7. 弹动与闪烁加载
   ========================================== */
.pavo-chat-bubble-loading {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
}

.pavo-dot {
    width: 6px;
    height: 6px;
    background: #64748b;
    border-radius: 50%;
    animation: pavo-bounce 1.4s infinite ease-in-out both;
}

.pavo-dot:nth-child(1) { animation-delay: -0.32s; }
.pavo-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes pavo-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

@keyframes pavo-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* 8. 响应式布局自适应 */
@media (max-width: 768px) {
    .om-pavo-header {
        padding: 0 20px;
    }
    .pavo-features-grid {
        flex-direction: column;
        gap: 12px;
    }
    .feature-capsule {
        height: 80px;
    }
    .pavo-hero-title {
        font-size: 20px;
    }
    .pavo-creation-card {
        padding: 16px;
        flex-direction: column;
        align-items: center;
    }
    .pavo-ref-upload-slot {
        transform: none !important;
    }
}
