:root {
    --bg:               #f8f8f8;
    --sidebar:          #111111;
    --sidebar-active:   #1e1e1e;
    --card-dark:        #141414;

    --accent-primary:   #e2e2e2;
    --accent-cyan:      #ffffff;
    --accent-indigo:    #a0a0a0;
    --accent-light:     rgba(255,255,255,0.25);
    --accent-glow:      rgba(255,255,255,0.08);

    --text-main:        #111111;
    --text-muted:       #777777;
    --text-light:       #aaaaaa;
    --card-bg:          #ffffff;
    --border:           #e5e5e5;

    --up:               #10b981;
    --down:             #ef4444;

    --radius-sm:        10px;
    --radius-md:        16px;
    --radius-lg:        20px;

    --shadow-sm:        0 2px 8px  rgba(0,0,0,0.06);
    --shadow-md:        0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:        0 8px 32px rgba(0,0,0,0.20);

    --transition:       all 0.22s cubic-bezier(0.4,0,0.2,1);
    --sidebar-w:        68px;

    /* Glass */
    --glass-bg:         rgba(255,255,255,0.12);
    --glass-bg-dark:    rgba(0,0,0,0.35);
    --glass-border:     rgba(255,255,255,0.18);
    --glass-blur:       blur(10px);
    --glass-shadow:     0 8px 32px rgba(0,0,0,0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    direction: rtl;
    font-family: vazir!important;
}

body {
    font-family: vazir!important;
    background: var(--bg);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 15px;
    overflow-y: scroll;

    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE Ùˆ Edge Ù‚Ø¯ÛŒÙ…ÛŒ */
}

/* Chrome, Safari, Edge Ø¬Ø¯ÛŒØ¯ */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.sidebar {
    width: var(--sidebar-w);
    background: var(--sidebar);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 300;
    gap: 6px;
    box-shadow: -2px 0 24px rgba(10, 15, 44, 0.25);
}

.sidebar-logo {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    cursor: pointer;
}
.sidebar-logo:hover {
    transform: scale(1.08);
}
.sidebar-logo i {
    font-size: 20px;
    color: #fff;
}

.sidebar-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8e8e8e;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.sidebar-icon:hover {
    background: var(--sidebar-active);
    color: rgb(255 255 255);
}
.sidebar-icon.active {
    background: var(--sidebar-active);
    color: var(--accent-cyan);
    box-shadow: inset -3px 0 0 var(--accent-cyan);
}

.sidebar-icon .tooltip-label {
    display: none;
    position: absolute;
    right: 54px;
    background: var(--card-dark);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 7px;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: var(--shadow-md);
    font-family: 'vazir';
}
.sidebar-icon:hover .tooltip-label {
    display: block;
    font-size: 22px;
}
.sidebar-bottom {
    margin-top: auto;
}

/* â•â• TOPBAR â€” Mobile â•â• */
.topbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--sidebar);
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    z-index: 400;
    box-shadow: 0 2px 16px rgba(10, 15, 44, 0.3);
}
.topbar-logo {
    width: 36px;
    height: 36px;
    background: whitesmoke;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar-logo i {
    font-size: 17px;
    color: #fff;
}
.topbar-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.hamburger {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.hamburger:hover {
    background: var(--sidebar-active);
}

/* â•â• MOBILE DRAWER â•â• */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    width: 230px;
    height: calc(100vh - 60px);
    background: var(--sidebar);
    z-index: 399;
    flex-direction: column;
    padding: 16px 12px;
    gap: 4px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: #7a88bb;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    direction: rtl;
    font-family: vazir;
}
.drawer-item i {
    font-size: 18px;
    flex-shrink: 0;
}
.drawer-item:hover {
    background: var(--sidebar-active);
    color: var(--accent-light);
}
.drawer-item.active {
    background: var(--sidebar-active);
    color: var(--accent-cyan);
    border-right: 3px solid var(--accent-cyan);
    text-decoration: none;
    font-size: 17px;
}

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 398;
    backdrop-filter: blur(2px);
}
.drawer-overlay.open {
    display: block;
}

/* â•â• MAIN LAYOUT â•â• */
.main-wrap {
    margin-right: var(--sidebar-w);
    margin-left: 0;
    padding: 28px 26px;
    min-height: 100vh;
    direction: rtl;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* â•â• HEADER â•â• */
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}
.dash-header h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: white;
}
.dash-header p {
    font-size: 16px;
    color: whitesmoke;
    margin-top: 4px;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-muted);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.icon-btn:hover {
    border-color: var(--accent-primary);
    color: #000000;
    font-weight: 900;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* â•â• STAT CARDS â•â• */
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: right;
}
.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--accent-cyan),
        var(--accent-primary)
    );
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--accent-primary);
    margin-bottom: 13px;
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.stat-value {
    font-family: "Space Mono", monospace;
    font-size: 23px;
    font-weight: 700;
    margin: 7px 0 6px;
    letter-spacing: -1px;
    direction: ltr;
    text-align: right;
}
.stat-change {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: flex-end;
}
.stat-change.up {
    color: var(--up);
}
.stat-change.down {
    color: var(--down);
}
.stat-change span {
    color: var(--text-muted);
    font-weight: 400;
}

/* â•â• EARNINGS CHART â•â• */
.earnings-card {
    background: var(--card-dark);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    color: #fff;
    height: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.earnings-card::after {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(34, 211, 238, 0.08),
        transparent 70%
    );
    pointer-events: none;
}
.earnings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
.earnings-title {
    font-size: 16px;
    font-weight: 700;
}
.date-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    direction: ltr;
}
.date-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.chart-wrap {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 118px;
    direction: ltr;
}
.bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    height: 100%;
}
.bar-inner {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: flex-end;
}
.bar {
    width: 100%;
    border-radius: 5px 5px 0 0;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
}
.bar:hover {
    background: rgba(255, 255, 255, 0.2);
}
.bar.active {
    background: linear-gradient(
        180deg,
        var(--accent-cyan),
        var(--accent-primary)
    );
    box-shadow: 0 0 14px rgba(34, 211, 238, 0.3);
}
.bar-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

/* â•â• ANALYTICS DONUT â•â• */
.analytics-card {
    background: linear-gradient(
        135deg,
        var(--accent-primary),
        var(--accent-indigo)
    );
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    height: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: right;
}
.analytics-card::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}
.analytics-title {
    font-size: 16px;
    font-weight: 700;
}
.analytics-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
    line-height: 1.55;
}
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
    direction: ltr;
}
.donut-legend {
    font-size: 13px;
    text-align: right;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
    flex-direction: row-reverse;
}
.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* â•â• PROFILE CARD â•â• */
.profile-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-align: right;
}
.profile-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
}
.profile-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-light);
    box-shadow: 0 0 0 4px var(--accent-glow);
}
.profile-name {
    font-size: 16px;
    font-weight: 700;
    margin-top: 11px;
}
.profile-role {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}
.profile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
}
.profile-action-btn {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
    padding: 11px 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 600;
}
.profile-action-btn i {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}
.profile-action-btn:hover {
    background: var(--accent-glow);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}
.profile-action-btn.primary {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.profile-action-btn.primary:hover {
    background: #2563eb;
    color: #fff;
}

/* â•â• SECTION HEADER â•â• */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.section-header-left {
    display: flex;
    align-items: center;
    gap: 6px;
}
.section-title {
    font-size: 16px;
    font-weight: 700;
}
.section-count {
    background: var(--accent-glow);
    color: var(--accent-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}
.view-all {
    font-size: 13px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.view-all:hover {
    color: var(--accent-indigo);
}

/* â•â• CARDS SCROLL â•â• */
.cards-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    direction: ltr;
}
.cards-scroll::-webkit-scrollbar {
    height: 4px;
}
.cards-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-light);
    border-radius: 4px;
}

.payment-card {
    border-radius: var(--radius-md);
    padding: 16px 18px;
    min-width: 162px;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    direction: ltr;
}
.payment-card:hover {
    transform: translateY(-3px);
}
.payment-card.dark-card {
    background: linear-gradient(135deg, var(--card-dark), #1a2560);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.payment-card.blue-card {
    background: linear-gradient(
        135deg,
        var(--accent-primary),
        var(--accent-indigo)
    );
    color: #fff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}
.payment-card.light-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}
.payment-card::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.card-network {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 22px;
}
.card-amount {
    font-family: "Space Mono", monospace;
    font-size: 16px;
    font-weight: 700;
}
.card-exp {
    font-size: 10px;
    opacity: 0.55;
    margin-top: 5px;
}

/* â•â• GOALS â•â• */
.goal-item {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    text-align: right;
}
.goal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.goal-name {
    font-size: 14px;
    font-weight: 600;
}
.goal-date {
    font-size: 12px;
    color: var(--text-muted);
    direction: ltr;
}
.goal-bar {
    height: 6px;
    border-radius: 10px;
    background: var(--bg);
    overflow: hidden;
    margin-top: 9px;
}
.goal-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        var(--accent-primary),
        var(--accent-cyan)
    );
    transition: width 1s ease;
}

/* â•â• TIP CARD â•â• */
.tip-card {
    background: var(--card-dark);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}
.tip-card::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.15),
        transparent 70%
    );
}
.tip-badge {
    background: rgba(34, 211, 238, 0.15);
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 14px;
    margin-right: auto;
}
.tip-card h4 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}
.tip-card h4 span {
    color: var(--accent-cyan);
}
.learn-btn {
    background: var(--accent-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: var(--transition);
    width: fit-content;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}
.learn-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* â•â• PANEL â•â• */
.panel {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

/* â•â• ANIMATIONS â•â• */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.anim {
    animation: fadeUp 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.anim-1 {
    animation-delay: 0.04s;
}
.anim-2 {
    animation-delay: 0.1s;
}
.anim-3 {
    animation-delay: 0.17s;
}
.anim-4 {
    animation-delay: 0.23s;
}
.anim-5 {
    animation-delay: 0.3s;
}
.anim-6 {
    animation-delay: 0.37s;
}

/* â•â• RESPONSIVE â•â• */
@media (max-width: 991px) {
    .main-wrap {
        padding: 22px 18px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .topbar {
        display: flex;
    }
    .mobile-drawer {
        display: flex;
    }
    .main-wrap {
        margin-right: 0;
        padding: 76px 14px 24px;
    }
    .dash-header h1 {
        font-size: 20px;
    }
    .stat-value {
        font-size: 20px;
    }
}


.bg-box-setting{
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #2a2a2a;
    background: #111;
    transition: all .25s ease;
}

.bg-box-setting img{
    width:100%;
    height:180px;
    object-fit:cover;
    opacity:.85;
}

.bg-box-setting:hover{
    transform: scale(1.03);
    border-color:#444;
}

.bg-box-setting.active-setting{
    border:3px solid #00ff88;
    box-shadow:0 0 15px #00ff8866;
}

.bg-box-setting.active-setting::after{
    content:"✓";
    position:absolute;
    top:10px;
    right:12px;
    background:#00ff88;
    color:#000;
    font-weight:bold;
    border-radius:50%;
    width:26px;
    height:26px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Wrapper */
.setting-modal-content {
    background: rgba(20, 20, 20, 0.55) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* Header */
.setting-modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    background: rgba(255,255,255,0.03);
}

.setting-close-btn {
    filter: invert(1);
}

/* Tabs */
.setting-tabs .setting-tab-btn {
    color: #ccc;
    background: transparent !important;
    border: none !important;
    padding: 10px 16px;
    font-weight: 500;
}

.setting-tabs .setting-tab-btn:hover {
    color: rgb(135, 195, 255);
}

.setting-tabs .setting-tab-btn.active {
    color: #fff !important;
    border-bottom: 2px solid #ffffff !important;
}

/* Tab content */
.setting-tab-content {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Pane */
.setting-tab-pane {
    color: white!important
}

.setting-modal-title{
    color: white;
}

/* Optional hover for bg-box-setting */
.bg-box-setting {
    transition: transform .25s ease, box-shadow .25s ease;
    border-radius: 12px;
}

.bg-box-setting:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255,255,255,0.15);
}

.setting-form .setting-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.setting-form .setting-input:focus {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.setting-label {
    font-size: 0.9rem;
    opacity: 0.85;
}

.setting-hr {
    border-color: rgba(255,255,255,0.1);
}

.setting-save-btn {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.setting-save-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Logo preview */
.setting-logo-preview-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
}

.setting-logo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
