@font-face {
    font-family: IRANSans;
    src: url("../fonts/iransans/IRANSansWeb_Light.woff") format("woff");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: IRANSans;
    src: url("../fonts/iransans/IRANSansWeb.woff") format("woff");
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: IRANSans;
    src: url("../fonts/iransans/IRANSansWeb_Medium.woff") format("woff");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

body {
    font-family: IRANSans, sans-serif;
    background: url('../img/background/background.jpg') no-repeat center center fixed;

    background-size: cover;
    background-attachment: fixed;
    color: #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 15px;
}
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
}
.product-row {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.product-row:hover {
    background: rgba(255, 255, 255, 0.03);
}
.qty-btn {
    @apply w-8 h-8 flex items-center justify-center bg-white/10 hover:bg-emerald-500 rounded-lg transition-all active:scale-90;
}
/* استایل کارت اصلی (شیشه‌ای زغالی) */
.login-card {
    width: 340px;
    min-height: 380px; /* افزایش ارتفاع برای ظاهر بهتر */
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.25); /* مشکی با شفافیت بیشتر برای حس زغال */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* حاشیه سفید بسیار کم‌رنگ */
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.4); /* سایه تیره‌تر */
    text-align: center;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* تراز عمودی و افقی محتوا */
}



p.subtitle {
    margin-bottom: 30px;
    font-size: 15px;
    opacity: 0.9;
    color: #e0ffe0; /* سبز بسیار روشن */
}

.input-field {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.15); /* شفافیت کمتر برای حس سنگینی زغال */
    border: 2px solid transparent;
    outline: none;
    border-radius: 12px;
    color: #e0ffe0; /* متن سبز روشن */
    font-family: 'Vazirmatn', sans-serif;
    font-size: 15px;
    box-sizing: border-box;
    transition: 0.3s;
    text-align: center;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-field:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(144, 238, 144, 0.5); /* حاشیه سبز روشن هنگام فوکوس */
    box-shadow: 0 0 15px rgba(144, 238, 144, 0.1);
}

/* کپچا */
.captcha-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.captcha-display {
    background: rgba(0, 0, 0, 0.4); /* پس‌زمینه تیره‌تر */
    padding: 10px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    cursor: pointer;
    color: #98fb98; /* رنگ سبز روشن برای کپچا */
}
.captcha-input {
    width: 60%;
    margin-bottom: 0;
}

/* دکمه‌ها */
.btn {
    width: 100%;
    padding: 14px;
    background: #4CAF50; /* سبز جنگلی برای دکمه اصلی */
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn:hover {
    background: #66BB6A; /* سبز روشن‌تر هنگام هاور */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* انیمیشن و مدیریت مراحل */
.step {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* کلاس مخفی کننده */
.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

/* دکمه بازگشت کوچک */
.back-link {
    margin-top: 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    text-decoration: underline;
}
.back-link:hover {
    color: #d4edda; /* سبز روشن */
}
/* پنل اصلی */
.main-panel {
    width: 100%;
    max-width: 1100px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    margin-bottom: 50px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.btn-back-home {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
    border: 1px solid var(--border-color);
}
.btn-back-home:hover { background: #c9cfd2; color: var(--forest-green); }


/* --- فرم‌ها --- */
.user-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.input-box { display: flex; flex-direction: column; }

.input-box label {
    color: #d1d5db;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.glass-input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 12px;
    color: white;
    font-family: 'Vazirmatn';
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-green);
}

select.glass-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 16px;
}
select.glass-input option { background-color: #333; color: white; }

.full-width { grid-column: 1 / -1; }

/* --- جدول سفارشات --- */
.orders-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

table { width: 100%; border-collapse: collapse; }

th {
    background: rgba(255, 255, 255, 0.05);
    padding: 18px 15px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--neon-green);
    white-space: nowrap;
}

td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.item-list { list-style: none; padding: 0; margin: 0; font-size: 0.85rem; color: #e5e7eb; }
.item-list li { margin-bottom: 5px; position: relative; padding-right: 12px; }
.item-list li::before { content: "•"; color: var(--neon-green); position: absolute; right: 0; }

.price-text { font-weight: bold; font-size: 1rem; }
.total-price { color: var(--gold-text); font-size: 1.1rem; }

/* --- دکمه‌ها --- */
.action-btns { display: flex; flex-direction: column; gap: 8px; }

.btn-modern {
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Vazirmatn';
    font-weight: bold;
    font-size: 0.8rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    text-decoration: none;
}

.btn-confirm {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
}
.btn-confirm:hover { transform: translateY(-2px); filter: brightness(1.1); }

.btn-invoice {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
}
.btn-invoice:hover { background: white; color: var(--forest-green); }

/* --- ریسپانسیو (موبایل) --- */
@media (max-width: 900px) {
    .main-panel { padding: 15px; }
    thead { display: none; }
    tr {
        display: flex; flex-direction: column;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 20px; border-radius: 15px; padding: 15px;
        border: 1px solid var(--border-color);
    }
    td {
        display: flex; justify-content: space-between; align-items: center;
        border: none; padding: 10px 0; width: 100%;
    }
    td::before {
        content: attr(data-label);
        color: var(--neon-green); font-size: 0.85rem; font-weight: bold;
    }
    .action-btns { flex-direction: row; margin-top: 10px; }
    .btn-modern { flex: 1; }
    /* راست چین کردن مقادیر در موبایل */
    .price-text, .total-price { text-align: left; }
}
:root {
    --forest-green: #1b4d3e;
    --neon-green: #4ade80;
    --glass-bg: rgba(20, 40, 30, 0.75);
    --border-color: rgba(255, 255, 255, 0.15);
    --gold-text: #fcd34d;
}
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}
.sidebar-item:hover {
    background: rgba(16, 185, 129, 0.2);
    transition: 0.3s;
}
/* کلاس اصلی برای افکت شیشه‌ای */
.glass-panel {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 30px;
    width: 100%;
    max-width: 800px;
}

h2 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    font-weight: 700;
}

/* استایل فرم‌ها */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.glass-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Vazirmatn', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box; /* مهم برای محاسبه درست عرض */
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

textarea.glass-input {
    resize: vertical;
    height: 80px;
}

/* استایل سوییچ کشیدنی (Toggle Switch) */
.toggle-container {
    display: flex;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin-right: 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

input:checked + .slider {
    background: rgba(76, 175, 80, 0.5); /* سبز شیشه‌ای */
    border-color: rgba(76, 175, 80, 0.8);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.toggle-label-text {
    color: #fff;
}

/* دکمه ذخیره */
.btn-submit {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
    margin-top: 10px;
}

.btn-submit:hover {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* --- بخش لیست محصولات --- */
.product-list-section {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.product-info{
    display: flex;
    align-items: center;      /* هم‌تراز عمودی */
    gap: 12px;                /* فاصله بین آیتم‌ها */
    flex-wrap: wrap;          /* برای ریسپانسیو */
}

.product-title{
    font-weight: bold;
    font-size: 16px;
    color: #211f1f;
}

.product-price{
    font-size: 14px;
    color: #fff5ff;
}

/* موبایل جمع و جورتر و مرتب */
@media(max-width:768px){
    .product-info{
        flex-direction: row;
        align-items: center;
    }
}

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

.btn-action {
    padding: 8px 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-edit {
    background: rgba(52, 152, 219, 0.3); /* آبی شیشه‌ای */
    color: #fff;
}
.btn-edit:hover { background: rgba(52, 152, 219, 0.6); }

.btn-delete {
    background: rgba(231, 76, 60, 0.3); /* قرمز شیشه‌ای */
    color: #fff;
}
.btn-delete:hover { background: rgba(231, 76, 60, 0.6); }

/* برای موبایل */
@media (max-width: 600px) {
    .product-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-actions {
        margin-top: 15px;
        width: 100%;
        justify-content: flex-end;
    }
}
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}
.sidebar-item:hover {
    background: rgba(16, 185, 129, 0.2);
    transition: 0.3s;
}
:root {
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* سیستم شبکه‌بندی کارت‌ها */
.vlog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* استایل کارت شیشه‌ای */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.vlog-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    color: var(--text-color);
    flex-grow: 1;
}

.vlog-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: bold;
}

.vlog-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* دکمه شیشه‌ای */
.btn-view {
    display: inline-block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: 0.3s;
    cursor: pointer;
}

.btn-view:hover {
    background: white;
    color: #1a3a1a;
    font-weight: bold;
}

/* انیمیشن برای لود شدن */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.glass-card {
    animation: slideUp 0.6s ease forwards;
}

/* استایل بدنه طومار */
.scroll-container {
    background: #f4e4bc; /* رنگ کاغذ قدیمی */
    max-width: 700px;
    width: 100%;
    position: relative;
    padding: 60px 40px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border-left: 2px solid #d2b48c;
    border-right: 2px solid #d2b48c;
    /* افکت لبه‌های سوخته و قدیمی */
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
}

/* چوب‌های بالا و پایین طومار */
.scroll-container::before, .scroll-container::after {
    content: "";
    position: absolute;
    left: -5%;
    width: 110%;
    height: 30px;
    background: #5d4037; /* رنگ چوبی */
    border-radius: 15px;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.5), 0 5px 15px rgba(0,0,0,0.3);
}
.scroll-container::before { top: -15px; }
.scroll-container::after { bottom: -15px; }

.vlog-image {
    width: 100%;
    height: auto;
    border: 8px solid #5d4037; /* قاب چوبی دور عکس */
    border-radius: 5px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}



.summary {
    font-style: italic;
    color: #5d4037;
    background: rgba(141, 110, 99, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.content {
    line-height: 2;
    color: #2b1d0e;
    text-align: justify;
}

/* بخش نظرات */
.comments-section {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 3px double #8d6e63;
}

.comment-box {
    background: rgba(255,255,255,0.5);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-right: 4px solid #388e3c; /* سبز جنگلی */
}

/* دکمه بازگشت با تم چوبی */
.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 25px;
    background: #5d4037;
    color: #f4e4bc;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
    width: 100%;
    text-align: center;
}
.back-btn:hover { background: #3e2723; }
/* کانتینر اصلی با افکت شیشه‌ای جنگلی */
.scroll-container {
    width: 100%;
    max-width: 800px;
    /* افکت شیشه‌ای تیره و سبز */
    background: rgba(10, 40, 20, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    padding: 40px;
    box-sizing: border-box;
    text-align: right;
    position: relative;
    overflow: hidden;
}

/* افکت نوری بالای کانتینر (اختیاری برای زیبایی) */
.scroll-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* استایل تصویر ولاگ */
.vlog-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* عنوان اصلی */


/* باکس خلاصه ماجرا */
.summary {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-right: 4px solid #66bb6a; /* خط سبز سمت راست */
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.8;
    font-size: 1.1rem;
}

.summary strong {
    color: #66bb6a; /* رنگ سبز روشن برای کلمه خلاصه */
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* محتوای اصلی */
.content {
    line-height: 2;
    font-size: 1.1rem;
    color: #c8e6c9; /* سبز خاکستری روشن */
    margin-bottom: 40px;
    text-align: justify;
}

/* استایل دادن به تصاویر داخل ادیتور اگر وجود داشته باشد */
.content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 15px 0;
}

/* دکمه بازگشت */
.back-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(45deg, #2e7d32, #43a047);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    border: 1px solid #66bb6a;
}

.back-btn:hover {
    background: linear-gradient(45deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.6);
    color: #fff;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .scroll-container {
        padding: 20px;
        width: 95%;
    }
    h1 {
        font-size: 1.5rem;
    }
}





.zenith-glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.zenith-search-input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    margin-bottom: 20px;
    outline: none;
}

.zenith-message-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.zenith-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.zenith-label { color: #74f2ce; font-weight: bold; margin-left: 5px; }

.zenith-delete-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 7px 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}
@media (min-width: 900px) {
    .zenith-master-wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 0;
    }

    .zenith-glass-panel {
        max-width: 1100px;
        padding: 40px;
    }

    .zenith-message-card {
        padding: 20px;
        margin-bottom: 20px;
        backdrop-filter: blur(20px);
    }

    .zenith-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}
