/* ============================================================
   管理员后台样式
   ============================================================ */

.admin-body {
    background: #F0F2F5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif;
    min-height: 100vh;
}

/* 登录页 */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/uploads/login_bg.png') center/cover no-repeat;
    padding: 20px;
    position: relative;
}
.login-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 0;
}
.login-card {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 32px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    text-align: center;
    box-sizing: border-box;
}
.login-card * {
    box-sizing: border-box;
}

.login-card .logo {
    font-size: 48px;
    margin-bottom: 8px;
}

.login-card h1 {
    font-size: 22px;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.login-card .subtitle {
    font-size: 13px;
    color: #999;
    margin-bottom: 28px;
}

.login-card .form-group {
    margin-bottom: 18px;
    text-align: left;
}

.login-card .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.login-card .form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.login-card .form-group input:focus {
    border-color: #FF6B00;
}

.login-card .btn-login {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.login-card .btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255,107,0,0.4);
}

.login-card .error-msg {
    color: #E74C3C;
    font-size: 13px;
    margin-top: 10px;
    min-height: 20px;
}

/* 顶部导航 */
.admin-topbar {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    background-image: url('/uploads/header_bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 0 20px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(255,107,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-topbar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.admin-topbar > * {
    position: relative;
    z-index: 1;
}

.admin-topbar .brand {
    font-size: 17px;
    font-weight: 700;
}

.admin-topbar .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-topbar .user-info span {
    font-size: 13px;
    opacity: 0.9;
}

.admin-topbar .btn-sm {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.admin-topbar .btn-sm:hover {
    background: rgba(255,255,255,0.35);
}

/* Tab导航 */
.admin-tabs {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #E8E8E8;
    position: sticky;
    top: 56px;
    z-index: 99;
    overflow-x: auto;
    scrollbar-width: none;
}

.admin-tabs::-webkit-scrollbar { display: none; }

.admin-tab {
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.admin-tab:hover { color: #FF6B00; }

.admin-tab.active {
    color: #FF6B00;
    border-bottom-color: #FF6B00;
    font-weight: 600;
}

/* 内容区 */
.admin-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* 工具栏 */
.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.toolbar .toolbar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}

.btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: #fff;
}

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(255,107,0,0.35);
    transform: translateY(-1px);
}

.btn-outline {
    background: #fff;
    color: #FF6B00;
    border: 1.5px solid #FF6B00;
}

.btn-outline:hover {
    background: #FFF3E8;
}

.btn-danger {
    background: #E74C3C;
    color: #fff;
}

.btn-danger:hover {
    background: #C0392B;
}

.btn-success {
    background: #27AE60;
    color: #fff;
}

.btn-xs {
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 6px;
}

/* 表格 */
.table-wrap {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

th {
    background: #FAFAFA;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    border-bottom: 1px solid #E8E8E8;
}

td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #F0F0F0;
    color: #333;
}

tr:hover td {
    background: #FFFBF7;
}

.table-img {
    width: 50px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: #F0F0F0;
}

/* 弹窗 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
    padding: 20px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #F0F0F0;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #E0E0E0;
}

.modal-body {
    padding: 20px 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #FF6B00;
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.form-group .img-preview {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    background: #F0F0F0;
    margin-top: 8px;
}

.modal-footer {
    padding: 0 24px 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* 状态标签 */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.status-pending {
    background: #FFF3E8;
    color: #FF8C00;
}

.status-completed {
    background: #E8F8F0;
    color: #27AE60;
}

.status-cancelled {
    background: #FEEAEA;
    color: #E74C3C;
}

/* ============================================================
   点餐布局 (外卖风格 - 左分类栏 + 右菜品 + 底购物车)
   ============================================================ */
.order-wrap {
    display: flex;
    height: calc(100vh - 56px - 42px - 56px); /* topbar - tabs - cart bar */
    overflow: hidden;
}

/* 左侧分类 */
.order-sidebar {
    width: 85px;
    min-width: 85px;
    background: #FAFAFA;
    overflow-y: auto;
    scrollbar-width: none;
    border-right: 1px solid #E8E8E8;
}

.order-sidebar::-webkit-scrollbar { display: none; }

.order-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 4px;
    cursor: pointer;
    min-height: 56px;
    text-align: center;
    transition: all 0.15s;
    position: relative;
}

.order-cat-item .oc-icon { font-size: 18px; margin-bottom: 2px; }
.order-cat-item .oc-name { font-size: 11px; color: #666; line-height: 1.3; }

.order-cat-item.active {
    background: #fff;
}

.order-cat-item.active .oc-name {
    color: #1A1A1A;
    font-weight: 600;
}

.order-cat-item.active::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 3px;
    background: #FF6B00;
    border-radius: 0 2px 2px 0;
}

/* 父分类展开箭头 */
.order-cat-item .oc-arrow {
    font-size: 9px;
    color: #BBB;
    margin-top: 1px;
    transition: transform 0.2s;
}
.order-cat-item .oc-arrow.expanded {
    transform: rotate(180deg);
    color: var(--primary, #FF6B00);
}

/* 子分类样式 */
.order-cat-item.order-cat-child {
    background: #F0F0F0;
    padding: 9px 4px;
    min-height: 44px;
    border-bottom: 1px solid #E5E5E5;
}
.order-cat-item.order-cat-child .oc-icon { font-size: 14px; }
.order-cat-item.order-cat-child .oc-name { font-size: 10px; color: #999; }
.order-cat-item.order-cat-child.active { background: #fff; }
.order-cat-item.order-cat-child.active .oc-name { color: #1A1A1A; }
.order-cat-item.order-cat-child.active::before {
    left: 2px; width: 2px; opacity: 0.5;
}

/* 右侧菜品 */
.order-dishes {
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
    background: #fff;
}

.order-section-header {
    padding: 10px 14px 6px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 5;
    border-bottom: 1px solid #FAFAFA;
}

.order-section-header .os-dot {
    width: 3px; height: 14px;
    background: #FF6B00;
    border-radius: 2px;
}

.order-dish-row {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #FAFAFA;
    cursor: pointer;
    transition: background 0.15s;
    gap: 10px;
}

.order-dish-row:active { background: #FFF8F2; }
.order-dish-row.selected { background: #FFF3E8; }

.order-dish-row .od-thumb {
    width: 60px; height: 60px;
    border-radius: 6px;
    background: #F0F0F0;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.order-dish-row .od-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}

.order-dish-row .od-info {
    flex: 1; min-width: 0;
}

.order-dish-row .od-name {
    font-size: 14px; font-weight: 600;
    color: #333;
    line-height: 1.4;
    word-break: break-word;
}

.order-dish-row .od-price {
    font-size: 16px; font-weight: 700;
    color: #E74C3C;
    margin-top: 2px;
}

.order-dish-row .od-add-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #FF6B00;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    transition: all 0.15s;
}

.order-dish-row .od-add-btn:active {
    transform: scale(0.9);
    background: #E55D00;
}

/* 底部购物车栏 */
.order-cart-bar {
    position: sticky;
    bottom: 0;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    z-index: 50;
    height: 56px;
}

.cart-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
}

.cart-icon-wrap {
    position: relative;
    width: 40px; height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-wrap .cart-icon { font-size: 20px; }

.cart-icon-wrap .cart-num {
    position: absolute;
    top: -2px; right: -4px;
    background: #FF6B00;
    color: #fff;
    font-size: 10px;
    min-width: 18px; height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-total {
    font-size: 18px;
    font-weight: 700;
}

.cart-submit-btn {
    background: #FF6B00;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
}

.cart-submit-btn:active {
    transform: scale(0.95);
    background: #E55D00;
}

/* 购物车弹窗 */
.cart-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    align-items: flex-end;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-popup-overlay.active { display: flex; }

.cart-popup {
    background: #fff;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-height: 65vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.25s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cart-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #F0F0F0;
    font-size: 15px;
    font-weight: 600;
}

.cart-popup-clear {
    background: none;
    border: none;
    color: #999;
    font-size: 13px;
    cursor: pointer;
}

.cart-popup-items {
    flex: 1;
    overflow-y: auto;
    padding: 4px 0;
    max-height: 300px;
}

.cart-popup-items .cart-item-row {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    border-bottom: 1px solid #FAFAFA;
}

.cart-item-row .ci-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.cart-item-row .ci-price {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.cart-item-row .ci-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ci-qty-btn {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 1.5px solid #D0D0D0;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-qty-btn:hover { border-color: #FF6B00; color: #FF6B00; }
.ci-qty-val { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }

.cart-popup-extra {
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid #F0F0F0;
}

.cart-popup-extra input {
    padding: 8px 10px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    width: 100%;
}

.cart-popup-extra input:focus { border-color: #FF6B00; }

.cart-popup-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid #F0F0F0;
    font-size: 16px;
    font-weight: 700;
    color: #E74C3C;
}

.cart-popup-total span:last-child {
    font-size: 22px;
}

/* Toast提示 */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
}

.toast.success {
    background: #27AE60;
}

.toast.error {
    background: #E74C3C;
}

/* 订单列表 */
.order-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.order-card .order-no {
    font-weight: 600;
    font-size: 14px;
}

.order-card .order-time {
    font-size: 12px;
    color: #999;
}

.order-items-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.order-item-tag {
    background: #F5F5F5;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: #666;
}

.order-card .order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-card .order-total {
    font-size: 18px;
    font-weight: 700;
    color: #E74C3C;
}

/* 响应式 */
@media (max-width: 768px) {
    .admin-content { padding: 12px; }
    .modal { max-width: 95%; }
    .order-panel { grid-template-columns: 1fr; }
    .order-right { position: static; }
    th, td { padding: 8px 10px; font-size: 12px; }
}

/* 筛选栏 */
.filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-bar input,
.filter-bar select {
    padding: 7px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
}

/* ============================================================
   图标选择器
   ============================================================ */
.icon-picker {
    border: 1.5px solid #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
}

.icon-picker-tabs {
    display: flex;
    overflow-x: auto;
    background: #FAFAFA;
    border-bottom: 1px solid #E8E8E8;
    padding: 4px 4px 0;
    gap: 2px;
    scrollbar-width: none;
}

.icon-picker-tabs::-webkit-scrollbar { display: none; }

.ip-tab {
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    white-space: nowrap;
    flex-shrink: 0;
    color: #888;
    border: 1px solid transparent;
    border-bottom: none;
    transition: all 0.2s;
}

.ip-tab:hover {
    color: #FF6B00;
    background: #FFF8F2;
}

.ip-tab.active {
    color: #FF6B00;
    background: #fff;
    border-color: #E8E8E8;
    font-weight: 600;
}

.icon-picker-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 2px;
    padding: 6px;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
}

.ip-icon {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.15s;
    border: 2px solid transparent;
    user-select: none;
}

.ip-icon:hover {
    background: #FFF3E8;
    transform: scale(1.1);
}

.ip-icon.selected {
    background: #FFF3E8;
    border-color: #FF6B00;
    transform: scale(1.15);
}

.icon-preview {
    margin-top: 6px;
    font-size: 13px;
    color: #888;
}

.icon-preview span {
    font-size: 22px;
    margin-left: 4px;
    vertical-align: middle;
}

/* ============================================================
   顾客订单面板（收银台）
   ============================================================ */
.customer-orders-panel {
    width: 220px;
    min-width: 220px;
    background: #FFF8F0;
    border-left: 1px solid #FFD4A8;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.cop-header {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: #FF6B00;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 2;
}
.cop-count {
    background: #fff;
    color: #FF6B00;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
.cop-toggle {
    margin-left: auto;
    background: rgba(255,255,255,0.3);
    color: #fff;
    border: none;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    cursor: pointer;
}
.cop-list {
    flex: 1;
    overflow-y: auto;
}
.cop-item {
    padding: 10px 12px;
    border-bottom: 1px solid #FFE4C4;
    cursor: pointer;
    transition: background 0.15s;
}
.cop-item:hover { background: #FFF0E0; }
.cop-item-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}
.cop-item-table {
    font-size: 11px;
    color: #888;
}
.cop-item-items {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}
.cop-item-total {
    font-size: 13px;
    font-weight: 700;
    color: #FF6B00;
}
.cop-item-actions {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}
.cop-btn {
    flex: 1;
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-weight: 600;
}
.cop-btn-add { background: #FF6B00; color: #fff; }
.cop-btn-done { background: #4CAF50; color: #fff; }
.cop-btn-cancel { background: #ddd; color: #666; }

/* 收银按钮（主面板右上角） */
.customer-order-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #FF6B00;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    display: none;
}

@media (max-width: 480px) {
    .icon-picker-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    .ip-tab {
        padding: 4px 7px;
        font-size: 11px;
    }
}

/* 右下角水印图片 */
.admin-watermark {
    position: fixed;
    right: 10px;
    bottom: 70px;
    width: 40vw;
    max-width: 200px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.4;
}
