/* 
 * DonutSMP Orchestrator — Premium Tasarım Sistemi & Stil Dosyası
 * Gece Mavisi, Cam Morfizasyonu (Glassmorphism), Neon Kenar Parlamaları ve Animasyonlar
 */

:root {
    --bg-deep: #070913;
    --bg-panel: rgba(12, 18, 36, 0.72);
    --bg-card: rgba(19, 29, 56, 0.48);
    --bg-card-hover: rgba(26, 38, 72, 0.65);
    --border-glow: rgba(99, 102, 241, 0.16);
    --border-hover: rgba(6, 182, 212, 0.45);
    --border-active: rgba(16, 185, 129, 0.5);
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --color-primary: #6366f1; /* Indigo */
    --color-primary-rgb: 99, 102, 241;
    --color-secondary: #06b6d4; /* Cyan */
    --color-secondary-rgb: 6, 182, 212;
    --color-success: #10b981; /* Emerald Green */
    --color-warning: #f59e0b; /* Amber */
    --color-danger: #ef4444; /* Rose Red */
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Animated Glow Spots */
.ambient-glow {
    position: fixed;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.15;
    pointer-events: none;
}

.g-1 {
    background: radial-gradient(circle, var(--color-primary), transparent 70%);
    top: -15vw;
    left: -15vw;
    animation: drift 20s infinite alternate ease-in-out;
}

.g-2 {
    background: radial-gradient(circle, var(--color-secondary), transparent 70%);
    bottom: -15vw;
    right: -15vw;
    animation: drift 25s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8vw, 6vw) scale(1.15); }
}

.page-background {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(20, 30, 60, 0.4), transparent 45%),
        linear-gradient(180deg, rgba(7, 9, 19, 0.95) 0%, rgba(5, 7, 14, 0.98) 100%);
    z-index: -3;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    border: 2px solid transparent;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Layout Shell */
.panel-shell {
    width: min(1340px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Glassmorphism Container Base */
.glass-card {
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    background: var(--bg-panel);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

/* Navigation Top Bar */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
}
.brand-mark svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.brand-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #ffffff, #c7d2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 2px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Auto Refresh Widget */
.auto-refresh-widget {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 175px;
}

.auto-refresh-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.progress-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 99px;
    transition: width 1s linear;
}

/* Switch Slider */
.switch-container {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.15);
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

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

/* Buttons System */
.primary-btn, .secondary-btn, .danger-btn {
    border: none;
    border-radius: 12px;
    padding: 9px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-sans);
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.action-btn {
    border: none;
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-sans);
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.tag-btn {
    border: none;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: var(--font-sans);
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.primary-btn {
    background: linear-gradient(135deg, var(--color-primary), rgba(99, 102, 241, 0.8));
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.primary-btn:hover {
    background: linear-gradient(135deg, #5356e6, #585cf2);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
}
.primary-btn:active {
    transform: translateY(1px);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}
.secondary-btn:active {
    transform: translateY(1px);
}

.danger-btn {
    background: linear-gradient(135deg, var(--color-danger), rgba(239, 68, 68, 0.8));
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.danger-btn:hover {
    background: linear-gradient(135deg, #e13232, #ea3a3a);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ff6b6b;
    border-color: rgba(239, 68, 68, 0.25);
}

.icon, .btn-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Authentication Card Styling */
.auth-card {
    max-width: 460px;
    margin: 60px auto;
    padding: 40px;
    border-color: rgba(255, 255, 255, 0.12);
}

.auth-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-brand-badge {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}
.auth-brand-badge svg {
    width: 30px;
    height: 30px;
}

.eyebrow {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid var(--border-glow);
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #a5b4fc;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.panel-header {
    text-align: center;
}

.panel-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panel-header p {
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.55;
}

.panel-form {
    width: 100%;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.panel-form input, .panel-form select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    font-family: var(--font-sans);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.panel-form input::placeholder {
    color: var(--text-muted);
}

.panel-form input:focus, .panel-form select:focus {
    border-color: rgba(99, 102, 241, 0.7);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.panel-form select {
    padding-left: 20px; /* Select is styled simpler without input-icon */
}

.auth-footer-notes {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.highlight-note {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: inline-block;
    margin: 4px auto 0;
}

.error-text {
    color: var(--color-danger);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 14px;
    text-align: center;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 10px 16px;
    border-radius: 12px;
    width: 100%;
}

/* Dashboard Layout Grid */
.dashboard-container {
    display: block;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 24px;
    align-items: flex-start;
}

.dashboard-welcome {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.system-status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 18px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse 1.6s infinite ease-in-out;
}

.status-online { background-color: var(--color-success); }
.status-online::after { background-color: var(--color-success); }

.status-offline { background-color: var(--color-danger); }
.status-offline::after { background-color: var(--color-danger); }

.status-error { background-color: var(--color-warning); }
.status-error::after { background-color: var(--color-warning); }

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2.2); opacity: 0; }
}

.indicator-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.system-status-indicator strong {
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Statistics Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.metric-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.metric-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.05);
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.metric-icon svg {
    width: 22px;
    height: 22px;
}

.bg-blue { background: rgba(99, 102, 241, 0.08); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.2); }
.bg-green { background: rgba(16, 185, 129, 0.08); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.2); }
.bg-purple { background: rgba(168, 85, 247, 0.08); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.2); }

.metric-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.metric-card strong {
    font-size: 1.95rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 4px;
    display: block;
}

.text-green { color: #10b981 !important; }
.text-purple { color: #a855f7 !important; }

/* Filter Controls Bar */
.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 18px;
    margin-bottom: 24px;
    border-color: rgba(255, 255, 255, 0.06);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 0.88rem;
    outline: none;
    transition: all var(--transition-fast);
}

.search-box input:focus {
    border-color: rgba(6, 182, 212, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.filter-tabs {
    display: flex;
    gap: 8px;
}

.filter-tab {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-tab:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}

.filter-tab.active {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

/* Sections Structure */
.section-block {
    margin-top: 24px;
}

.section-panel {
    padding: 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.section-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4px;
    line-height: 1.5;
}

.section-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.glow-green {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.glow-blue {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.2);
    color: #67e8f9;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

/* Bot Cards Grid */
.bot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.bot-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.bot-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.06);
}

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

.bot-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 85px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Deletion Button on custom bot card */
.delete-bot-action-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.delete-bot-action-btn:hover {
    color: #ff6b6b;
    background: rgba(239, 68, 68, 0.08);
}

.delete-bot-action-btn svg {
    width: 15px;
    height: 15px;
}

.status-pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.status-online-pill { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.2); }
.status-offline-pill { background: rgba(239, 68, 68, 0.12); color: #ff6b6b; border: 1px solid rgba(239, 68, 68, 0.2); }
.status-error-pill { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.2); }

.bot-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bot-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.bot-card-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.bot-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.bot-meta-tag {
    font-size: 0.76rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 4px 8px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

.bot-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.action-btn {
    padding: 8px 12px;
    font-size: 0.82rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.detail-btn {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(99, 102, 241, 0.2);
    color: #c7d2fe;
}
.detail-btn:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
    border-color: rgba(6, 182, 212, 0.4);
}

.start-btn:hover { background: rgba(16, 185, 129, 0.08); color: #34d399; border-color: rgba(16, 185, 129, 0.2); }
.stop-btn:hover { background: rgba(239, 68, 68, 0.08); color: #ff6b6b; border-color: rgba(239, 68, 68, 0.2); }
.restart-btn:hover { background: rgba(245, 158, 11, 0.08); color: #fbbf24; border-color: rgba(245, 158, 11, 0.2); }

/* PM2 Loading Overlay Mask */
.bot-card.bot-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 19, 0.8);
    backdrop-filter: blur(4px);
    z-index: 5;
    border-radius: 18px;
}

.bot-card-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #a5b4fc;
    font-size: 0.8rem;
    font-weight: 600;
}

.css-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(99, 102, 241, 0.15);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add Bot Form Layout Grid */
.bot-add-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.full-width-input {
    grid-column: span 2;
}

.template-autofills {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.autofill-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.tag-btn {
    padding: 6px 12px;
    font-size: 0.76rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.tag-btn:hover {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

.add-bot-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
}

/* Finance Grid Styling */
.finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.finance-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.finance-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
}

.finance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.finance-item:last-child {
    border-bottom: none;
}

.finance-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.finance-card strong {
    font-size: 0.95rem;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

/* Sidebar Styling */
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.card-glow.purple {
    background: linear-gradient(90deg, #c084fc, var(--color-primary));
}

.sidebar-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.sidebar-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
}

.info-list li span {
    color: var(--text-secondary);
}

.info-list li strong {
    color: var(--text-primary);
}

.badge-status {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
}

.badge-status.online {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
}

/* Selected Bot Details Panel Drawer */
.detail-drawer-card {
    border-color: rgba(168, 85, 247, 0.18);
}

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

.close-detail-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
}
.close-detail-btn:hover {
    color: #ffffff;
}

.detail-intro {
    font-style: italic;
    color: var(--text-muted) !important;
}

.detail-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.detail-section {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.detail-item span {
    color: var(--text-secondary);
}

.detail-item strong {
    color: var(--text-primary);
    font-family: var(--font-mono);
}

/* Resource Live Metrics Visuals */
.resource-visual-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.visual-progress-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.visual-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.progress-bar-container {
    height: 6px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill.cpu-bar {
    background: linear-gradient(90deg, #34d399, #fbbf24);
}

.progress-bar-fill.ram-bar {
    background: linear-gradient(90deg, #818cf8, #c084fc);
}

.visual-value {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-primary);
    text-align: right;
}

/* Minecraft Styled Inventory Visual Grid */
.minecraft-inv-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.minecraft-inv-grid {
    display: grid;
    grid-template-columns: repeat(9, 36px);
    gap: 5px;
    background: #c6c6c6;
    padding: 6px;
    border: 3px solid #555555;
    border-top-color: #8b8b8b;
    border-left-color: #8b8b8b;
    border-radius: 6px;
    box-sizing: border-box;
    width: max-content;
    margin: 0 auto;
    overflow: visible;
}

.mc-slot {
    width: 30px;
    height: 30px;
    background: #8b8b8b;
    border: 2px solid #373737;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.mc-slot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mc-item-icon {
    font-size: 0.95rem;
    user-select: none;
    line-height: 1;
}

.mc-count {
    position: absolute;
    bottom: -1px;
    right: 0px;
    color: #ffffff;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.58rem;
    text-shadow: 1px 1px 0px #000000;
    pointer-events: none;
}

/* Custom Minecraft Hover Tooltip */
.mc-tooltip {
    position: fixed;
    z-index: 10020;
    pointer-events: none;
    display: none;
}

.mc-tooltip-box {
    display: none;
    position: absolute;
    bottom: 130%;
    left: 0;
    z-index: 10030;
    pointer-events: none;
    background: rgba(16, 0, 16, 0.96);
    border: 2px solid #2e0854;
    border-radius: 6px;
    padding: 8px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
    flex-direction: column;
    gap: 4px;
    min-width: 170px;
    text-align: left;
}

/* Align right side slots (columns 6-9) to the left to prevent screen overflow */
.mc-slot:nth-child(9n+6) .mc-tooltip-box,
.mc-slot:nth-child(9n+7) .mc-tooltip-box,
.mc-slot:nth-child(9n+8) .mc-tooltip-box,
.mc-slot:nth-child(9n) .mc-tooltip-box {
    left: auto;
    right: 0;
}

.mc-slot:hover .mc-tooltip-box {
    display: flex;
}

.mc-tooltip-title {
    color: #ffff55; /* MC Yellow */
    font-weight: 700;
    font-size: 0.85rem;
}

.mc-tooltip-qty {
    color: #55ffff; /* MC Aqua */
    font-size: 0.78rem;
    font-family: var(--font-mono);
}

.mc-tooltip-details {
    color: #aaaaaa;
    font-size: 0.72rem;
}

/* Notice Card */
.notice-card {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.015);
}

.notice-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-secondary);
}

/* Toast Container Alerts */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10005;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    width: calc(100vw - 48px);
    pointer-events: none;
}

.toast-item {
    padding: 14px 18px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: slideInRight 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: all 0.3s ease;
}

.toast-item.removing {
    animation: slideOutRight 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast-item.success {
    background: rgba(16, 185, 129, 0.16);
    border-color: rgba(16, 185, 129, 0.3);
}

.toast-item.error {
    background: rgba(239, 68, 68, 0.16);
    border-color: rgba(239, 68, 68, 0.3);
}

.toast-item.info {
    background: rgba(99, 102, 241, 0.16);
    border-color: rgba(99, 102, 241, 0.3);
}

.toast-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-message {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
}

@keyframes slideInRight {
    from { transform: translateX(110%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(110%); opacity: 0; }
}

/* Custom Modal Animation */
.custom-modal {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 15, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    max-width: 440px;
    width: 100%;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(239, 68, 68, 0.25);
    box-shadow: 0 30px 90px rgba(239, 68, 68, 0.12);
    text-align: center;
    animation: modalZoomIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.modal-alert-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.modal-alert-icon svg {
    width: 24px;
    height: 24px;
}

.modal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.modal-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 14px 0 24px;
}

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

.modal-actions button {
    flex: 1;
    padding: 12px;
}

.hidden-modal {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Microsoft Authentication Warning Widget */
.auth-notice-alert {
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.05);
    text-align: left;
}

.auth-notice-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-warning);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-notice-icon {
    width: 15px;
    height: 15px;
    stroke: var(--color-warning);
}

.auth-notice-alert p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.auth-notice-link {
    color: var(--color-secondary);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-fast);
}

.auth-notice-link:hover {
    color: #ffffff;
}

.auth-notice-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-notice-code {
    flex: 1;
    font-family: var(--font-mono);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.copy-code-btn {
    padding: 7px 12px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--color-warning);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.copy-code-btn:hover {
    background: var(--color-warning);
    color: #000000;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Widescreen Widescope Bot Details Modal */
.detail-modal-content {
    width: 90% !important;
    max-width: 950px !important;
    background: rgba(10, 15, 30, 0.88) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65), 0 0 35px rgba(99, 102, 241, 0.18) !important;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: modalZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.detail-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.detail-modal-title-row {
    text-align: left;
}

.detail-modal-title-row h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-top: 2px;
}

.close-modal-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.close-modal-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Widescreen Modal Nested Tabs */
.detail-modal-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.25);
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-modal-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 16px 24px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.detail-modal-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

.detail-modal-tab.active {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
    background: rgba(6, 182, 212, 0.05);
}

.detail-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.detail-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.detail-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Live Terminal Log Console View */
.log-console-container {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    background: #04060b;
}

.console-header {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    background: #0d101a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 6px;
}

.console-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.console-dot.red { background: #ef4444; }
.console-dot.yellow { background: #f59e0b; }
.console-dot.green { background: #10b981; }

.console-title {
    margin-left: 10px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    flex: 1;
    text-align: left;
}

.console-refresh-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.console-refresh-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.console-body {
    padding: 18px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.6;
    color: #34d399; /* Smooth developer green */
    background: #04060b;
    height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-all;
    text-align: left;
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.8);
}

.console-body::-webkit-scrollbar {
    width: 8px;
}

.console-body::-webkit-scrollbar-track {
    background: #04060b;
}

.console-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.console-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.console-line-err {
    color: #fca5a5 !important; /* Elegant red for error outputs */
}

/* Dashboard Navigation Tabs */
.dashboard-tabs {
    display: flex;
    gap: 8px;
    padding: 6px;
    margin-bottom: 24px;
    background: rgba(12, 18, 36, 0.4);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    align-items: center;
}

.nav-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-tab.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(6, 182, 212, 0.35));
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-tab .icon {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
}

.nav-tab.active .icon {
    transform: scale(1.1);
}

/* Tab Pane Transitions */
.tab-pane {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tab-pane.hidden-pane {
    display: none !important;
    opacity: 0;
    transform: translateY(8px);
}

.hidden-element, .hidden-card {
    display: none !important;
}

.show-card {
    display: block !important;
}

@keyframes modalZoomIn {
    from { transform: scale(0.94); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Helper Utilities */
.ripple-btn {
    position: relative;
    overflow: hidden;
}

/* Responsive Styling Adjustments */
@media (max-width: 1100px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding: 16px;
    }
    
    .topbar {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
    }

    .topbar-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .auto-refresh-widget {
        min-width: 100%;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
    }

    .filter-tabs {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .bot-add-form-grid {
        grid-template-columns: 1fr;
    }

    .full-width-input {
        grid-column: span 1;
    }
}

/* VDS Selector Styling */
.vds-selector-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 10px 16px;
    min-width: 250px;
    box-sizing: border-box;
}

.vds-select-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vds-select {
    flex: 1;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 6px 10px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
}

.vds-select:hover {
    border-color: rgba(99, 102, 241, 0.35);
}

.vds-select option {
    background: var(--bg-deep);
    color: #ffffff;
}

.vds-add-btn, .vds-delete-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition-fast);
}

.vds-add-btn:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.vds-delete-btn:hover {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

@media (max-width: 768px) {
    .vds-selector-container {
        min-width: 100%;
        margin-bottom: 10px;
    }
}
