/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary: #52becf;
    --primary-dark: #3aa6b8;
    --primary-light: #e6f6f9;
    --secondary: #f4a261;
    --accent: #2a9d8f;
    --bg: #F0F2FF;
    --card-bg: #FFFFFF;
    --text-main: #1A1A2E;
    --text-sub: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --shadow: 0 4px 20px rgba(82, 190, 207, 0.15);
    --shadow-sm: 0 2px 8px rgba(82, 190, 207, 0.10);
    --radius: 18px;
    --radius-sm: 12px;
    --bottom-nav-h: 65px;
    --top-nav-h: 60px;
    --app-max: 480px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Tajawal', sans-serif;
    background: #D1D5F0;
    color: var(--text-main);
    direction: rtl;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* ===== App Container (Phone Shape on Desktop) ===== */
#app-wrapper {
    width: 100%;
    max-width: var(--app-max);
    min-height: 100vh;
    background: var(--bg);
    position: relative;
    box-shadow: 0 0 60px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ===== TOP NAVBAR ===== */
.top-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: var(--app-max);
    height: var(--top-nav-h);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(108,99,255,0.10);
    border-bottom: 1px solid var(--border);
}

.top-navbar .nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    font-weight: 900;
}

.nav-logo .logo-text {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.top-navbar .nav-menu-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    font-size: 16px;
    transition: all 0.2s;
}

.top-navbar .nav-menu-btn:hover { background: var(--primary); color: white; }

.top-navbar .nav-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}
.btn-login:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(108,99,255,0.35); color: white; }

.user-avatar {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
}

.avatar-circle {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

/* Dropdown Menu */
.side-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.side-menu-overlay.active { opacity: 1; pointer-events: all; }

.side-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: white;
    z-index: 1200;
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.side-menu.open { right: 0; }

.side-menu-header {
    padding: 24px 20px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    position: relative;
}

.side-menu-header .close-btn {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu-header .menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.side-menu-header .menu-logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
}

.side-menu-header h3 { font-size: 20px; font-weight: 800; }
.side-menu-header p { font-size: 12px; opacity: 0.8; }

.side-menu-body { padding: 16px 0; flex: 1; }

.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    border-right: 3px solid transparent;
}
.menu-item:hover, .menu-item.active {
    background: var(--primary-light);
    color: var(--primary);
    border-right-color: var(--primary);
}
.menu-item .menu-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
}
.menu-item:hover .menu-icon, .menu-item.active .menu-icon {
    background: var(--primary);
    color: white;
}
.menu-divider { height: 1px; background: var(--border); margin: 8px 16px; }

.side-menu-footer { padding: 16px 20px; border-top: 1px solid var(--border); }

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    width: 100%;
    cursor: pointer;
    justify-content: center;
}
.lang-switcher:hover { background: var(--primary); color: white; }

/* Logout btn in menu */
.logout-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: #EF4444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    font-family: 'Tajawal', sans-serif;
}
.logout-item:hover { background: #FEF2F2; }
.logout-item .menu-icon { background: #FEF2F2; color: #EF4444; }

/* ===== PAGE CONTENT ===== */
.page-content {
    margin-top: var(--top-nav-h);
    margin-bottom: var(--bottom-nav-h);
    flex: 1;
    overflow-y: auto;
}

/* ===== SEARCH BAR ===== */
.search-section {
    padding: 16px 16px 12px;
    background: white;
    border-bottom: 1px solid var(--border);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 10px 14px;
    transition: all 0.2s;
}
.search-box:focus-within {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(108,99,255,0.08);
}

.search-box .search-icon { color: var(--text-light); font-size: 16px; }
.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    color: var(--text-main);
    outline: none;
    direction: rtl;
}
.search-box input::placeholder { color: var(--text-light); }
.search-box .search-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 6px 14px;
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.search-box .search-btn:hover { background: var(--primary-dark); }

/* ===== CATEGORIES ===== */
.categories-section { padding: 16px 0 8px; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 10px;
}
.section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}
.section-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
    display: inline-block;
}
.see-all {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 16px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.categories-scroll.expanded {
    flex-wrap: wrap;
    overflow-x: visible;
}

.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    background: white;
    border: 1.5px solid var(--border);
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-sub);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}
.cat-chip:hover, .cat-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108,99,255,0.25);
}
.cat-chip .cat-emoji { font-size: 15px; }

/* ===== WORDS SECTION ===== */
.words-section { padding: 8px 0; }

/* Word Card */
.word-card {
    background: white;
    border-radius: var(--radius);
    margin: 0 16px 14px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.word-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 0 var(--radius) var(--radius) 0;
}
.word-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108,99,255,0.15);
    border-color: var(--primary);
}

.word-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 8px;
}

.word-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.4;
    text-decoration: none;
}
.word-title:hover { color: var(--primary); }

.word-badge {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.word-excerpt {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 12px;
}

.read-more-btn {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Tajawal', sans-serif;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.word-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: 10px;
}

.word-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.author-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
}
.author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-sub);
}

.author-link {
    text-decoration: none;
    color: var(--text-sub);
    transition: color 0.2s;
    border-bottom: 1px dashed transparent;
}
.author-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.word-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.action-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-light);
    font-size: 12px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Tajawal', sans-serif;
    transition: color 0.2s;
}
.action-btn:hover { color: var(--primary); }
.action-btn.fav:hover { color: var(--secondary); }

/* Load More */
.load-more-section { padding: 8px 16px 20px; text-align: center; }
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: white;
    border: 1.5px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}
.load-more-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108,99,255,0.25);
}
.load-more-btn.loading { opacity: 0.7; pointer-events: none; }

/* Spinner */
.spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(108,99,255,0.3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== BOTTOM NAVBAR ===== */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: var(--app-max);
    height: var(--bottom-nav-h);
    background: white;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 8px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(108,99,255,0.08);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s;
    min-width: 60px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Tajawal', sans-serif;
    position: relative;
}

.bottom-nav-item .nav-icon {
    font-size: 22px;
    transition: transform 0.2s;
    line-height: 1;
}

.bottom-nav-item:hover { color: var(--primary); }
.bottom-nav-item:hover .nav-icon { transform: translateY(-2px); }

.bottom-nav-item.active {
    color: var(--primary);
}
.bottom-nav-item.active .nav-icon {
    transform: translateY(-2px);
}
.bottom-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Center special nav item */
.bottom-nav-item.center-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px;
    padding: 10px 14px;
    margin-top: -20px;
    box-shadow: 0 4px 16px rgba(108,99,255,0.40);
    min-width: 70px;
}
.bottom-nav-item.center-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(108,99,255,0.45);
    color: white;
}
.bottom-nav-item.center-btn.active { color: white; }
.bottom-nav-item.center-btn.active::after { display: none; }

/* ===== Responsive: Full Screen on Mobile ===== */
@media (max-width: 500px) {
    #app-wrapper {
        max-width: 100%;
        box-shadow: none;
    }
    .top-navbar,
    .bottom-navbar,
    .side-menu {
        max-width: 100%;
    }
}

/* ===== Empty state ===== */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-light);
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state p { font-size: 15px; }

/* ===== Skeleton loader ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.skeleton-card {
    background: white;
    border-radius: var(--radius);
    margin: 0 16px 14px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.sk-line { height: 14px; margin-bottom: 10px; }
.sk-title { width: 60%; height: 18px; }
.sk-text { width: 100%; }
.sk-text-short { width: 40%; }
.sk-badge { width: 80px; height: 22px; border-radius: 10px; }

/* ===== Card Top Actions (Favorite + Report) ===== */
.card-top-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    justify-content: flex-end;
}

.card-action-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: var(--bg);
    color: var(--text-light);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

/* Favorite */
.card-action-icon.fav-btn:hover { background: #FFF3F5; color: var(--secondary); }
.card-action-icon.fav-btn.active {
    background: #FFF3F5;
    color: var(--secondary);
}
.card-action-icon.fav-btn.active i { animation: pop 0.3s ease; }

/* Report */
.card-action-icon.report-btn:hover { background: #FEF9EC; color: #F59E0B; }
.card-action-icon.report-btn.reported {
    background: #FEF9EC;
    color: #F59E0B;
}

/* Edit / Delete */
.card-action-icon.edit-btn { text-decoration: none; }
.card-action-icon.edit-btn:hover { background: var(--primary-light); color: var(--primary); }
.card-action-icon.delete-btn:hover { background: #FEF2F2; color: #EF4444; }

/* ===== Reaction Buttons (Like / Dislike / Share) ===== */
.word-reactions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--text-light);
    font-size: 13px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.reaction-btn i { font-size: 15px; transition: transform 0.2s; }

/* Like */
.reaction-btn.like-btn:hover { border-color: #6C63FF; color: #6C63FF; background: var(--primary-light); }
.reaction-btn.like-btn.active {
    border-color: #6C63FF;
    color: #6C63FF;
    background: var(--primary-light);
    font-weight: 700;
}
.reaction-btn.like-btn.active i { transform: scale(1.2); }

/* Dislike */
.reaction-btn.dislike-btn:hover { border-color: #EF4444; color: #EF4444; background: #FEF2F2; }
.reaction-btn.dislike-btn.active {
    border-color: #EF4444;
    color: #EF4444;
    background: #FEF2F2;
    font-weight: 700;
}
.reaction-btn.dislike-btn.active i { transform: scale(1.2); }

/* Share */
.reaction-btn.share-btn { padding: 6px 10px; }
.reaction-btn.share-btn:hover { border-color: var(--accent); color: var(--accent); background: #EAFAF5; }

/* Pop animation */
@keyframes pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* ===== Report Modal ===== */
.report-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.report-modal.show { display: flex; }

.report-modal-box {
    background: white;
    border-radius: 20px;
    padding: 28px 24px 24px;
    width: 100%;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: slideUp 0.25s ease;
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity:0; }
    to   { transform: translateY(0);    opacity:1; }
}

.report-modal-icon { font-size: 40px; margin-bottom: 12px; }
.report-modal-box h4 { font-size: 18px; font-weight: 800; color: var(--text-main); margin-bottom: 8px; }
.report-modal-box p  { font-size: 14px; color: var(--text-sub); margin-bottom: 16px; }

.report-reason-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    resize: none;
    outline: none;
    margin-bottom: 16px;
    direction: rtl;
    transition: border-color 0.2s;
}
.report-reason-input:focus { border-color: var(--primary); }

.report-modal-actions {
    display: flex;
    gap: 10px;
}

.btn-report-cancel {
    flex: 1;
    padding: 11px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text-sub);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-report-cancel:hover { background: var(--bg); }

.btn-report-confirm {
    flex: 1;
    padding: 11px;
    border-radius: 12px;
    border: none;
    background: #F59E0B;
    color: white;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-report-confirm:hover { background: #D97706; }

/* Toast Notification */
.toast-notify {
    position: fixed;
    bottom: calc(var(--bottom-nav-h) + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #1A1A2E;
    color: white;
    padding: 12px 20px;
    border-radius: 24px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 600;
    z-index: 3000;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    max-width: 90vw;
    text-align: center;
}
.toast-notify.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-notify.success { background: #16A34A; }
.toast-notify.error   { background: #DC2626; }
.toast-notify.warning { background: #F59E0B; }

