* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --success: #10b981;
    --success-dark: #059669;
    --danger: #ef4444;
    --warning: #f59e0b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: var(--gray-800);
    line-height: 1.6;
}

/* 顶部导航栏 */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text {
    display: inline;
}

.logo-sub {
    display: inline;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 0.75rem;
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--gray-300);
    background: white;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-btn:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.nav-btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    border: none;
    color: white;
}

.nav-btn-primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-1px);
}

.user-status {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 16px;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, #e0e7ff 0%, #f5f3ff 50%, #e0e7ff 100%);
    padding: 48px 24px;
    text-align: center;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-feature .icon {
    color: var(--primary);
}

/* 主体内容 - 宽屏布局 */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}

.main.wide-layout {
    max-width: 1000px;
}

/* 内容区 - 宽屏 */
.content {
    width: 100%;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

.history-link {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.history-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* 上传卡片 */
.upload-card {
    background: white;
    border-radius: 16px;
    border: 2px dashed var(--gray-300);
    padding: 60px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--gray-50);
}

.upload-card:hover {
    border-color: var(--primary);
    background: #f8fafc;
}

.upload-card.dragover {
    border-color: var(--primary);
    background: #eff6ff;
}

.upload-icon {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.upload-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.upload-icon-wrapper .main-icon {
    font-size: 1.8rem;
}

.upload-icon-wrapper img.main-icon {
    display: block;
    object-fit: contain;
    width: 40px;
    height: 40px;
}

.upload-icon-wrapper .mini-icon {
    position: absolute;
    bottom: -3px;
    right: -3px;
    font-size: 0.8rem;
    background: var(--success);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.upload-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.upload-hint {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.upload-hint strong {
    color: var(--gray-700);
}

#fileInput {
    display: none;
}

/* 文件信息 */
.file-info {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 12px;
    color: #166534;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 指令区域 */
.instruction-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-top: 24px;
    border: 1px solid var(--gray-200);
}

.instruction-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.instruction-label .icon {
    font-size: 1.2rem;
}

.instruction-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    transition: all 0.2s;
}

.instruction-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* 快捷指令 */
.quick-commands {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.quick-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.quick-btn {
    padding: 8px 16px;
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    background: white;
    color: var(--gray-700);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.quick-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #eff6ff;
    transform: translateY(-1px);
}

/* 按钮 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
}

/* 小按钮 */
.btn-sm {
    padding: 6px 12px;
    font-size: 0.875rem;
    border-radius: 8px;
    min-width: 36px;
    height: 36px;
}

.btn-sm.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-sm.btn-outline {
    background: white;
    border: 2px solid var(--gray-300);
    color: var(--gray-600);
}

.btn-sm.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    width: 100%;
    margin-top: 24px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    color: white;
    padding: 16px 48px;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: white;
    border: 2px solid var(--gray-300);
    color: var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* 结果卡片 */
.result-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-top: 24px;
    border: 1px solid var(--gray-200);
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.result-text {
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.6;
}

.result-text small {
    color: var(--gray-400);
    display: block;
    margin-top: 8px;
}

.result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 模态框 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 32px 32px;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-400);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.2s;
    line-height: 1;
}

.close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

/* Tab切换 */
.tabs {
    display: flex;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 32px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-600);
    transition: all 0.2s;
    border-radius: 10px;
    font-size: 1rem;
}

.tab:hover {
    color: var(--gray-800);
}

.tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 登录方式切换标签 */
.login-method-tabs {
    display: flex;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
}

.login-method-tab {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-600);
    transition: all 0.2s;
    border-radius: 10px;
    font-size: 0.9rem;
}

.login-method-tab:hover {
    color: var(--gray-800);
}

.login-method-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 表单 */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--gray-50);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

/* 验证码按钮 */
.form-group .code-input-group {
    display: flex;
    gap: 12px;
}

.form-group .code-input-group input {
    flex: 1;
}

.form-group .code-input-group .btn {
    white-space: nowrap;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.form-group .code-input-group .btn-outline {
    background: white;
    border: 2px solid var(--gray-300);
    color: var(--gray-600);
    cursor: pointer;
}

.form-group .code-input-group .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--gray-50);
}

.form-group .code-input-group .btn-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--gray-300);
    color: var(--gray-400);
}

/* 忘记密码链接 */
.forgot-link {
    text-align: center;
    margin-top: 16px;
}

.forgot-link a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.forgot-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* 模态框中的按钮 */
.modal .btn-primary {
    margin-top: 8px;
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
}

/* 套餐列表 */
.package-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.package-item:hover {
    border-color: var(--primary);
    background: #f8fafc;
}

.package-name {
    font-weight: 600;
    color: var(--gray-800);
}

.package-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Toast - 居中显示 */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2000;
    animation: fadeInScale 0.3s ease;
    border-left: 4px solid var(--success);
    max-width: 90%;
    min-width: 320px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.toast.hide {
    animation: fadeOutScale 0.3s ease forwards;
}

@keyframes fadeOutScale {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

.toast-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.toast-message {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* 加载动画 */
.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.upload-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.upload-progress-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.upload-progress-text {
    color: var(--primary);
    font-weight: 600;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.processing-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 20px;
}

.processing-spinner {
    width: 80px;
    height: 80px;
    position: relative;
}

.processing-spinner::before,
.processing-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: processingPulse 2s ease-in-out infinite;
}

.processing-spinner::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0.3;
}

.processing-spinner::after {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    animation-delay: 0.5s;
}

@keyframes processingPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.processing-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* 响应式 - 手机端 */
@media (max-width: 768px) {
    .navbar-inner {
        padding: 10px 12px;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        gap: 8px;
    }
    
    .logo {
        font-size: 1rem;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        min-width: auto;
        white-space: nowrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    
    .logo img {
        height: 32px !important;
        margin-right: 6px !important;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
    
    .logo-text {
        display: inline !important;
        white-space: nowrap;
    }
    
    .logo-sub {
        display: inline !important;
        white-space: nowrap;
    }
    
    .nav-right {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 6px;
        min-width: 0;
    }
    
    .nav-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .user-status {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.7rem;
        padding: 3px 8px;
        white-space: nowrap;
        line-height: 1.3;
        text-align: center;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        min-width: auto;
    }
    
    .hero {
        padding: 32px 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 16px;
    }
    
    .main {
        padding: 20px 16px;
    }
    
    .upload-card {
        padding: 40px 20px;
    }
    
    .upload-icon {
        width: 60px;
        height: 60px;
    }
    
    .upload-icon-wrapper {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
    
    .upload-icon-wrapper .main-icon {
        font-size: 1.5rem;
    }
    
    .upload-icon-wrapper img.main-icon {
        width: 35px;
        height: 35px;
    }
    
    .instruction-card {
        padding: 24px 16px;
    }
    
    .result-card {
        padding: 32px 20px;
    }
    
    .modal-content {
        padding: 24px 20px;
    }
    
    .toast {
        min-width: 280px;
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .navbar-inner {
        padding: 8px 10px;
        gap: 6px;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }
    
    .logo {
        font-size: 0.9rem;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        white-space: nowrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    
    .logo img {
        height: 28px !important;
        margin-right: 4px !important;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
    
    .logo-text {
        display: inline !important;
        white-space: nowrap;
    }
    
    .logo-sub {
        display: inline !important;
        white-space: nowrap;
    }
    
    .nav-right {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        gap: 4px;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
    
    .nav-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    .user-status {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.65rem;
        padding: 2px 6px;
        white-space: nowrap;
        line-height: 1.2;
        text-align: center;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }
    
    .result-actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .result-actions .btn {
        width: 100%;
    }
    
    .toast {
        min-width: auto;
        width: 90%;
    }
}
