/* ====================== */
/* Editor Control Bar - Shared Styles */
/* ====================== */
/* This file contains all control bar styles used by both WebsiteSettings and WebsiteEditor */

/* Base control bar */
.editor-control-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff !important;
    color: #333 !important;
    z-index: 10000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 64px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
    border-radius: 0 0 16px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.editor-control-bar *,
.editor-control-bar h1,
.editor-control-bar h2,
.editor-control-bar h3,
.editor-control-bar h4,
.editor-control-bar h5,
.editor-control-bar h6,
.editor-control-bar p,
.editor-control-bar a,
.editor-control-bar button {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    color: inherit !important;
}

/* Flexbox layout for control bar */
.control-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 8px;
}

.control-bar-left {
    flex-shrink: 0;
}

.control-bar-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.control-bar-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Logo styles */
.editor-control-bar .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 36px;
}

.editor-control-bar .logo-img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.editor-control-bar .logo-img.company-logo {
    max-height: 36px;
    width: auto;
}

/* Button base styles */
.editor-control-bar .btn {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Control bar action buttons */
.editor-control-bar .control-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #6c757d;
}

.editor-control-bar .control-bar-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
    transform: translateY(-1px);
}

/* Style selector dropdown button */
.editor-control-bar .btn-outline-secondary {
    border-color: #dee2e6 !important;
    color: #6c757d !important;
    background-color: #f8f9fa !important;
}

.editor-control-bar .btn-outline-secondary:hover {
    background-color: #e9ecef !important;
    border-color: #adb5bd !important;
    color: #495057 !important;
    transform: translateY(-1px);
}

.editor-control-bar .btn-primary {
    background-color: var(--accent-color, #5d57f4) !important;
    border-color: var(--accent-color, #5d57f4) !important;
    color: white !important;
}

.editor-control-bar .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color, #5d57f4), #000 15%) !important;
    border-color: color-mix(in srgb, var(--accent-color, #5d57f4), #000 15%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(93, 87, 244, 0.15);
}

.editor-control-bar .btn-success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
}

.editor-control-bar .btn-success:hover {
    background-color: #218838 !important;
    border-color: #1e7e34 !important;
}

/* Live status indicator */
.live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: #d4edda;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #155724;
    white-space: nowrap;
}

/* Status text variants */
.status-text-full { display: inline; }
.status-text-short { display: none; }

.live-status-dot {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

/* Live status as clickable link (when domain is connected) */
a.live-status-link {
    text-decoration: none;
    color: #155724;
    transition: all 0.2s ease;
}

a.live-status-link:hover {
    text-decoration: none;
    background-color: #c3e6cb;
    color: #0d5524;
}

/* Status + Domain Group (when no domain connected) */
.status-domain-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.status-badge-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #2d3436;
}

.status-badge-compact .live-status-dot {
    width: 8px;
    height: 8px;
}

/* Domain link button */
.domain-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: transparent;
    border: 1px solid var(--accent-color, #5d57f4);
    border-radius: 14px;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-color, #5d57f4) !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.domain-link-btn:hover {
    background: var(--accent-color, #5d57f4);
    color: white !important;
}

.domain-link-btn i {
    font-size: 11px;
    color: var(--accent-color, #5d57f4) !important;
}

.domain-link-btn:hover i {
    color: white !important;
}

.domain-link-btn .btn-text-full { display: inline; }
.domain-link-btn .btn-text-short { display: none; }

/* Control bar icon buttons (notifications, etc.) */
.control-bar-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--accent-color, #5d57f4) !important;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.control-bar-icon-btn:hover {
    background: rgba(93, 87, 244, 0.08);
}

.control-bar-icon-btn i {
    font-size: 20px;
    color: var(--accent-color, #5d57f4) !important;
}

/* Notification badge - red circle with count */
.control-bar-icon-btn .notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    color: white !important;
    background: #ef4444;
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ====================== */
/* Notification Dropdown */
/* ====================== */
.notification-dropdown-container {
    position: relative;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    max-height: 480px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    z-index: 10001;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.notification-dropdown.show {
    display: flex;
}

.notification-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.notification-dropdown-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.notification-dropdown-header .btn-link {
    color: #6c757d !important;
    font-size: 18px;
    transition: color 0.2s;
}

.notification-dropdown-header .btn-link:hover {
    color: var(--accent-color, #5d57f4) !important;
}

/* Notification Tabs */
.notification-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
    padding: 0;
}

.notification-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border: none;
    background: transparent;
    color: #6c757d;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.notification-tab i {
    font-size: 14px;
}

.notification-tab:hover {
    color: var(--accent-color, #5d57f4);
    background: rgba(93, 87, 244, 0.04);
}

.notification-tab.active {
    color: var(--accent-color, #5d57f4);
}

.notification-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: var(--accent-color, #5d57f4);
    border-radius: 2px 2px 0 0;
}

.notification-tab .tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
    font-weight: 600;
    color: #fff !important;
    background: #ef4444;
    border-radius: 9px;
}

.notification-tab.active .tab-badge {
    background: var(--accent-color, #5d57f4);
}

.notification-dropdown-body {
    flex: 1;
    overflow-y: auto;
    max-height: 300px;
}

.notification-dropdown-footer {
    padding: 0;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    text-align: center;
    min-height: 0;
}

.notification-dropdown-footer:empty {
    display: none;
    border-top: none;
}

.notification-footer-btn,
.notification-footer-link {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: var(--accent-color, #5d57f4) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.notification-footer-btn:hover,
.notification-footer-link:hover {
    background: #e9ecef;
    text-decoration: none;
}

.notification-footer-btn i,
.notification-footer-link i {
    margin-left: 6px;
}

.notification-see-all {
    color: var(--accent-color, #5d57f4) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.notification-see-all:hover {
    text-decoration: underline;
}

/* Notification Items */
.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.notification-item:hover {
    background: #f8f9fa;
}

.notification-item.unread {
    background: #f0f4ff;
}

.notification-item.unread:hover {
    background: #e8eeff;
}

.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.notification-icon.order {
    background: #e8f5e9;
    color: #2e7d32;
}

.notification-icon.contact {
    background: #e3f2fd;
    color: #1565c0;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-description {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-time {
    font-size: 11px;
    color: #adb5bd;
}

.notification-unread-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color, #5d57f4);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Empty state */
.notification-empty {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.notification-empty i {
    font-size: 40px;
    color: #dee2e6;
    margin-bottom: 12px;
    display: block;
}

.notification-empty p {
    font-size: 13px;
    margin: 0;
}

/* Loading state */
.notification-loading {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.notification-loading i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.notification-loading .spin {
    animation: notification-spin 1s linear infinite;
}

@keyframes notification-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile responsive */
@media (max-width: 576px) {
    .notification-dropdown {
        position: fixed;
        top: 60px;
        left: 8px;
        right: 8px;
        width: auto;
        max-height: calc(100vh - 80px);
    }

    .notification-tabs {
        padding: 0 4px;
    }

    .notification-tab {
        padding: 8px 6px;
        font-size: 11px;
    }

    .notification-tab i {
        font-size: 12px;
    }

    .notification-tab .tab-badge {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
    }
}

/* Style Selector Dropdown */
.style-selector-menu {
    min-width: 280px;
    max-width: 320px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    background-color: #ffffff;
    padding: 8px 0;
    margin-top: 8px;
}

/* Subsection Structure */
.style-subsection {
    border-bottom: 1px solid #f1f3f4;
}

.style-subsection:last-of-type {
    border-bottom: none;
}

.subsection-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    font-weight: 500;
    color: #495057;
    font-size: 14px;
    user-select: none;
}

.subsection-header:hover {
    background-color: #f8f9fa;
    color: var(--accent-color, #5d57f4);
}

.subsection-header i:first-child {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    color: var(--accent-color, #5d57f4);
}

.subsection-header span {
    flex: 1;
}

.subsection-arrow {
    transition: transform 0.25s ease-out;
    color: var(--accent-color, #5d57f4);
}

.style-subsection.expanded .subsection-arrow {
    transform: rotate(90deg);
}

.subsection-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease-out, padding 0.25s ease-out;
    overflow: hidden;
    padding: 0 16px;
    will-change: grid-template-rows, padding;
}

.subsection-content > div {
    min-height: 0;
    overflow: hidden;
}

.style-subsection.expanded .subsection-content {
    grid-template-rows: 1fr;
    padding: 0 16px 16px 16px;
}

/* Theme Options */
.theme-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    border: 1px solid transparent;
    font-size: 13px;
}

.theme-option:hover {
    background-color: #f8f9fa;
}

.theme-option.active {
    background-color: rgba(93, 87, 244, 0.1);
    border-color: var(--accent-color, #5d57f4);
    color: var(--accent-color, #5d57f4);
}

.theme-option .theme-badge {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--accent-color, #5d57f4);
    color: white !important;
    font-weight: 500;
}

/* Form Groups in Style Selector */
.style-selector-menu .form-group {
    margin-bottom: 12px;
}

.style-selector-menu .form-group:last-child {
    margin-bottom: 0;
}

.style-selector-menu .form-label {
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 4px;
}

.style-selector-menu .form-select {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.style-selector-menu .form-select:focus {
    border-color: var(--accent-color, #5d57f4);
    box-shadow: 0 0 0 0.2rem rgba(93, 87, 244, 0.15);
}

/* Color Options */
.color-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.color-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.color-preset {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 2px solid #dee2e6;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.color-preset:hover {
    transform: scale(1.05);
    border-color: #adb5bd;
}

.color-preset.active {
    border-color: var(--accent-color, #5d57f4);
    box-shadow: 0 0 0 2px rgba(93, 87, 244, 0.2);
}

.color-preset.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.form-control-color {
    width: 100%;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    padding: 2px;
    cursor: pointer;
}

.color-hex-display {
    margin-top: 8px;
    text-align: center;
    font-size: 12px;
    font-family: 'Courier New', Consolas, monospace;
    color: #6c757d;
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 4px 8px;
    border: 1px solid #e9ecef;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Alignment Options */
.alignment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.alignment-option {
    cursor: pointer;
}

.alignment-option input {
    display: none;
}

.alignment-option .option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 6px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 11px;
    color: #6c757d;
}

.alignment-option .option-content i {
    font-size: 16px;
    margin-bottom: 4px;
}

.alignment-option:hover .option-content {
    border-color: #adb5bd;
    background-color: #f8f9fa;
}

.alignment-option input:checked + .option-content {
    border-color: var(--accent-color, #5d57f4);
    background-color: rgba(93, 87, 244, 0.1);
    color: var(--accent-color, #5d57f4);
}

.loading-spinner {
    text-align: center;
    padding: 20px;
    color: #5d57f4;
}

.text-accent {
    color: #5d57f4 !important;
}

/* ====================== */
/* Tablet Responsive (768px and below) */
/* ====================== */
@media (max-width: 768px) {
    .editor-control-bar {
        height: 56px;
        border-radius: 0 0 12px 12px;
    }

    .control-bar-inner {
        gap: 6px;
    }

    .editor-control-bar .logo-img {
        height: 30px;
        max-width: 100px;
    }

    .live-status {
        padding: 4px 10px;
        font-size: 11px;
        gap: 6px;
    }

    .live-status-dot {
        width: 6px;
        height: 6px;
    }

    .editor-control-bar .status-domain-group {
        gap: 2px;
    }

    .editor-control-bar .domain-link-btn {
        font-size: 10px;
        padding: 2px 8px;
    }

    .editor-control-bar .btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .editor-control-bar .control-bar-btn {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }

    .editor-control-bar .control-bar-icon-btn {
        width: 32px;
        height: 32px;
    }

    .editor-control-bar .control-bar-icon-btn i {
        font-size: 16px;
    }
}

/* ====================== */
/* Mobile Responsive (576px and below) */
/* ====================== */
@media (max-width: 576px) {
    .editor-control-bar {
        height: 58px;
        border-radius: 0 0 10px 10px;
    }

    .control-bar-inner {
        gap: 4px;
    }

    .editor-control-bar .logo-img {
        height: 26px;
        max-width: 80px;
    }

    /* Show short status text on mobile instead of full */
    .status-text-full {
        display: none;
    }

    .status-text-short {
        display: inline;
    }

    .live-status {
        padding: 5px 10px;
        font-size: 11px;
        gap: 6px;
    }

    .editor-control-bar .status-badge-compact {
        font-size: 11px;
    }

    /* Show short domain button text on mobile */
    .editor-control-bar .domain-link-btn .btn-text-full {
        display: none;
    }

    .editor-control-bar .domain-link-btn .btn-text-short {
        display: inline;
    }

    .editor-control-bar .domain-link-btn {
        padding: 3px 8px;
        font-size: 10px;
        border-radius: 12px;
    }

    /* Hide button text, show only icons */
    .editor-control-bar .control-bar-btn .btn-text,
    .editor-control-bar .btn-outline-secondary .dropdown-toggle-text,
    .editor-control-bar .dropdown-toggle:not(.control-bar-btn)::after {
        display: none;
    }

    /* Style selector dropdown on mobile */
    .editor-control-bar #styleDropdown {
        padding: 6px !important;
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .editor-control-bar #styleDropdown::after {
        display: none;
    }

    /* Clean icon-only style on mobile - no box, just icons */
    .editor-control-bar .control-bar-btn {
        padding: 6px !important;
        min-width: auto;
        width: 42px;
        height: 42px;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .editor-control-bar .control-bar-btn:hover,
    .editor-control-bar #styleDropdown:hover {
        background: rgba(0, 0, 0, 0.05) !important;
        border-radius: 50%;
    }

    /* Icon colors - softer gray for better appearance */
    .editor-control-bar .control-bar-btn i,
    .editor-control-bar #styleDropdown i {
        margin: 0;
        font-size: 20px;
        color: #6c757d;
    }

    .editor-control-bar .control-bar-btn.btn-success i {
        color: #28a745;
    }

    .control-bar-right {
        gap: 6px;
    }

    /* Notification icon button - mobile */
    .editor-control-bar .control-bar-icon-btn {
        width: 44px;
        height: 44px;
        background: transparent;
    }

    .editor-control-bar .control-bar-icon-btn:hover {
        background: rgba(93, 87, 244, 0.08);
        border-radius: 12px;
    }

    .editor-control-bar .control-bar-icon-btn i {
        font-size: 22px;
        color: var(--accent-color, #5d57f4) !important;
    }

    .editor-control-bar .control-bar-icon-btn .notification-badge {
        top: 0;
        right: 0;
        min-width: 18px;
        height: 18px;
        font-size: 10px;
        line-height: 14px;
        padding: 0 5px;
    }
}

/* ====================== */
/* Extra Small Mobile (400px and below) */
/* ====================== */
@media (max-width: 400px) {
    .editor-control-bar {
        height: 54px;
    }

    .editor-control-bar .logo-img {
        height: 22px;
        max-width: 70px;
    }

    /* Slightly smaller icons on extra small screens */
    .editor-control-bar .control-bar-btn,
    .editor-control-bar #styleDropdown {
        width: 38px;
        height: 38px;
    }

    .editor-control-bar .control-bar-btn i,
    .editor-control-bar #styleDropdown i {
        font-size: 18px;
        color: #6c757d;
    }

    .editor-control-bar .control-bar-icon-btn {
        width: 40px;
        height: 40px;
    }

    .editor-control-bar .control-bar-icon-btn i {
        font-size: 20px;
        color: var(--accent-color, #5d57f4) !important;
    }

    .editor-control-bar .control-bar-icon-btn .notification-badge {
        top: -1px;
        right: -1px;
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        line-height: 12px;
        padding: 0 4px;
    }

    .live-status,
    .editor-control-bar .status-badge-compact {
        min-width: 20px;
        min-height: 20px;
        padding: 4px;
    }

    .live-status-dot {
        width: 6px;
        height: 6px;
    }
}
