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

:root {
    --bg-primary: #0e0e0e;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --bg-card: #1e1e1e;
    --accent-green: #85AD5C;
    --accent-green-hover: #9BC770;
    --text-primary: #e8e8e8;
    --text-secondary: #a0a0a0;
    --text-muted: #6b6b6b;
    --border-color: #2d2d2d;
    --border-hover: #3d3d3d;
    --shadow: rgba(0, 0, 0, 0.5);
    --danger: #e74c3c;
    --danger-hover: #c0392b;
}

body {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    min-height: 100vh;
    padding: 20px;
    color: var(--text-primary);
    line-height: 1.6;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.header-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

header h1 {
    font-size: 2.8em;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

header p {
    font-size: 1.1em;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Notification: minimal top-right */
.notification-top {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-notification {
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.8em;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    color: var(--text-secondary);
    transition: border-color 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.btn-notification:hover:not(:disabled) {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.bell-icon {
    width: 20px;
    height: 20px;
}

.btn-notification:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-notification.hidden {
    display: none;
}

.notification-status {
    font-size: 0.8em;
    color: var(--text-muted);
}

.notification-status.subscribed {
    color: var(--accent-green);
}

/* Stats widgets */
.stats-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.stats-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.2s ease;
}

.stats-widget:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.stats-murdered { border-left: 4px solid var(--danger); }
.stats-executions { border-left: 4px solid #c0392b; }
.stats-arrested { border-left: 4px solid #e67e22; }

.stats-value {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.stats-label {
    font-size: 0.9em;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-widgets {
        grid-template-columns: 1fr;
    }
}

.controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.cache-status {
    font-size: 0.85em;
    color: var(--text-muted);
    padding: 8px 12px;
    margin-bottom: 24px;
    background: var(--bg-secondary);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(133, 173, 92, 0.3);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.btn-danger {
    background: var(--danger);
    color: white;
    padding: 8px 16px;
    font-size: 13px;
}

.btn-danger:hover {
    background: var(--danger-hover);
}

section {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow);
}

section h2 {
    margin-bottom: 24px;
    color: var(--text-primary);
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.accounts-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.account-card {
    background: var(--bg-secondary);
    padding: 18px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.account-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-tertiary);
}

.account-info {
    flex: 1;
}

.account-info .account-type {
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    font-size: 0.75em;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.account-info .account-name {
    margin-top: 4px;
    color: var(--text-primary);
    font-size: 0.95em;
    font-weight: 500;
}

.account-info .account-priority {
    margin-top: 6px;
    font-size: 0.85em;
    color: var(--text-muted);
}

.account-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.priority-input {
    width: 70px;
    padding: 6px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
}

.priority-input:focus {
    outline: none;
    border-color: var(--accent-green);
}

.youtube-container {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    height: 100%;
    
}

.youtube-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.placeholder-icon {
    font-size: 3em;
    opacity: 0.5;
}

.placeholder-content p {
    color: var(--text-muted);
    font-size: 1em;
    margin: 0;
}

.youtube-streams {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.youtube-card {
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
  
}

.youtube-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.youtube-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.youtube-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.youtube-thumbnail {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.youtube-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.2s;
}

.youtube-thumbnail-overlay:hover .youtube-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.youtube-play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    padding-left: 4px;
    transition: transform 0.2s, background 0.2s;
}

.youtube-thumbnail-overlay:hover .youtube-play-button {
    transform: scale(1.1);
    background: rgba(255, 0, 0, 1);
}

@media (min-width: 768px) {
    .youtube-thumbnail {
        height: 360px;
        min-height: 360px;
    }
}

.youtube-info {
    padding: 20px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.youtube-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FF0000;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.2s ease;
}

.youtube-subscribe-btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.youtube-subscribe-btn svg {
    width: 20px;
    height: 20px;
}

.youtube-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-green);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.2s ease;
}

.youtube-join-btn:hover {
    background: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(133, 173, 92, 0.3);
}

.youtube-join-btn svg {
    width: 20px;
    height: 20px;
}

.youtube-info h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 1.05em;
    font-weight: 600;
    line-height: 1.4;
}

.youtube-info p {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-bottom: 6px;
}

.live-badge {
    display: inline-block;
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75em;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feeds-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feeds-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.feeds-column {
    display: flex;
    flex-direction: column;
}

.column-header {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.post-count {
    font-size: 0.85em;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 4px;
}

@media (max-width: 1024px) {
    .feeds-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Ensure feed cards take full width in columns */
.feeds-column .feed-card {
    width: 100%;
    max-width: 100%;
}

.feed-card {
    background: var(--bg-secondary);
    border-radius: 6px;
    padding: 18px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.feed-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    box-shadow: 0 4px 12px var(--shadow);
    background: var(--bg-tertiary);
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.feed-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.feed-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.feed-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-green);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1em;
    border: 2px solid var(--border-color);
}

.feed-user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feed-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95em;
}

.feed-username {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.85em;
}

.feed-date {
    font-size: 0.8em;
    color: var(--text-muted);
    white-space: nowrap;
}

.feed-content {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 0.95em;
    word-wrap: break-word;
    direction: ltr;
    text-align: left;
}

.feed-content.feed-content-rtl {
    direction: rtl;
    text-align: right;
}

.feed-media {
    margin: 12px 0;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    gap: 8px;
}

.feed-media:has(img:only-child),
.feed-media:has(.feed-video-container:only-child) {
    /* Single media item - full width */
}

.feed-media:has(img:nth-child(2)),
.feed-media:has(.feed-video-container:nth-child(2)) {
    /* Two media items - grid layout */
    grid-template-columns: 1fr 1fr;
}

.feed-media:has(img:nth-child(3)),
.feed-media:has(.feed-video-container:nth-child(3)) {
    /* Three or more media items */
    grid-template-columns: repeat(2, 1fr);
}

.feed-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    display: block;
}

.feed-image:hover {
    transform: scale(1.01);
    opacity: 0.95;
}

/* Grid layout for multiple images */
.feed-media {
    display: grid;
    gap: 8px;
}

.feed-media img:only-child {
    grid-column: 1 / -1;
}

.feed-media img:nth-child(2):last-child {
    grid-template-columns: 1fr 1fr;
}

.feed-media img:nth-child(3):last-child,
.feed-media img:nth-child(4):last-child {
    grid-template-columns: repeat(2, 1fr);
}

.feed-media img:nth-child(5):last-child,
.feed-media img:nth-child(6):last-child,
.feed-media img:nth-child(7):last-child,
.feed-media img:nth-child(8):last-child {
    grid-template-columns: repeat(2, 1fr);
}

.feed-video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.feed-video {
    width: 100%;
    max-height: 500px;
    display: block;
    border-radius: 8px;
}

.feed-video-preview {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    pointer-events: none;
    transition: all 0.2s;
}

.feed-video-container:hover .video-play-icon {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.feed-video-container video {
    cursor: pointer;
}

/* Image modal styles */
.image-modal {
    animation: fadeIn 0.2s ease-in;
    backdrop-filter: blur(4px);
}

.image-modal img {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--border-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Improve media grid responsiveness */
@media (max-width: 768px) {
    .feed-media {
        grid-template-columns: 1fr !important;
    }
    
    .feed-image {
        max-height: 400px;
    }
    
    .feed-video,
    .feed-video-preview {
        max-height: 400px;
    }
}

/* Improve feed card layout for media */
.feed-card {
    display: flex;
    flex-direction: column;
}

.feed-card:has(.feed-media) {
    /* Cards with media get slightly more spacing */
}

.feed-metrics {
    font-size: 0.85em;
    color: var(--text-muted);
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.feed-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--accent-green);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: color 0.2s;
}

.feed-link:hover {
    color: var(--accent-green-hover);
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--bg-card);
    margin: 10% auto;
    padding: 32px;
    border-radius: 8px;
    width: 90%;
    max-width: 520px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.modal-content h2 {
    color: var(--text-primary);
    margin-bottom: 24px;
    font-size: 1.5em;
    font-weight: 600;
}

.close {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close:hover {
    color: var(--text-primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-green);
    background: var(--bg-tertiary);
}

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

.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
}

.empty-state p {
    font-size: 1em;
    line-height: 1.6;
}

/* Summary Section */
.summary-section {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow);
}

.summary-header {
    margin-bottom: 24px;
}

.summary-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.4em;
    font-weight: 600;
}

.summary-content {
    min-height: 100px;
}

.summary-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.summary-error {
    padding: 20px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--danger);
    border-radius: 6px;
    color: var(--text-primary);
}

.summary-container {
    background: var(--bg-secondary);
    border-radius: 6px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.summary-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: var(--text-muted);
}

.summary-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.summary-tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: -2px;
}

.summary-tab:hover {
    color: var(--text-primary);
}

.summary-tab.active {
    color: var(--accent-green);
    border-bottom-color: var(--accent-green);
}

.summary-text {
    line-height: 1.8;
    color: var(--text-primary);
}

.summary-content-text {
    font-size: 1.05em;
    direction: ltr;
    text-align: left;
    line-height: 1.8;
}

.summary-content-text .summary-paragraph {
    margin-bottom: 16px;
    line-height: 1.8;
}

.summary-content-text .summary-heading {
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1.4;
}

.summary-content-text h2.summary-heading {
    font-size: 1.5em;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.summary-content-text h3.summary-heading {
    font-size: 1.3em;
}

.summary-content-text h4.summary-heading {
    font-size: 1.1em;
}

.summary-content-text .summary-list {
    margin: 16px 0;
    padding-left: 24px;
    list-style-type: disc;
}

.summary-content-text .summary-list-item {
    margin-bottom: 8px;
    line-height: 1.7;
}

.summary-content-text .summary-highlight {
    background: rgba(133, 173, 92, 0.2);
    color: var(--accent-green);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.summary-content-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.summary-content-text em {
    font-style: italic;
    color: var(--text-secondary);
}

.summary-content-text .summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95em;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow);
}

.summary-content-text .summary-table th,
.summary-content-text .summary-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.summary-content-text .summary-table th {
    background: var(--bg-tertiary);
    color: var(--accent-green);
    font-weight: 600;
}

.summary-content-text .summary-table tr:last-child td {
    border-bottom: none;
}

.summary-content-text .summary-table tbody tr:hover {
    background: var(--bg-tertiary);
}

#summaryFarsi .summary-content-text .summary-table th,
#summaryFarsi .summary-content-text .summary-table td {
    text-align: right;
}

#summaryFarsi .summary-content-text {
    direction: rtl;
    text-align: right;
    font-family: 'Rubik', 'Arial', 'Tahoma', sans-serif;
}

#summaryFarsi .summary-content-text .summary-list {
    padding-right: 24px;
    padding-left: 0;
}

@media (max-width: 768px) {
    .summary-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .youtube-streams {
        max-width: 100%;
    }
    
    .youtube-card {
        width: 100%;
    }
    
    .youtube-streams,
    .accounts-list {
        grid-template-columns: 1fr;
    }
    
    .feeds-two-columns {
        grid-template-columns: 1fr !important;
    }
    
    .feeds-container {
        display: flex;
        flex-direction: column;
    }
    
    header h1 {
        font-size: 2.2em;
    }
    
    .modal-content {
        padding: 24px;
        margin: 15% auto;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

/* Version display - bottom right */
.version-display {
    position: fixed;
    bottom: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-muted);
    font-size: 0.75em;
    font-family: 'Rubik', sans-serif;
    border-radius: 4px;
    z-index: 50;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    user-select: none;
    pointer-events: none;
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}
