/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: white;
    height: 100vh;
    padding: 0px;
    color: #333;
    overflow: hidden;
}

.container {
    /* max-width: 1400px; */
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    text-align: left;
}

/* Main content layout */
.main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Sidebar (левая колонка) */
.sidebar {
    flex: 0 0 30%;
    border-right: 2px solid #e0e0e0;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 24px;
    border-bottom: 2px solid #e0e0e0;
}

.sidebar-header h2 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #333;
}

/* File selector */
.file-selector {
    margin-top: 16px;
}

.file-selector label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.json-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
    margin-bottom: 8px;
}

.json-select:hover {
    border-color: #667eea;
}

.json-select:focus {
    outline: none;
    border-color: #667eea;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
    width: 100%;
}

/* File info */
.file-info {
    margin-top: 16px;
    padding: 12px;
    background: #f0f4ff;
    border-radius: 6px;
    border-left: 3px solid #667eea;
}

.file-info .info-item {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

.file-info .info-item:last-child {
    margin-bottom: 0;
}

.file-info strong {
    color: #333;
}

.venues-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.venue-item {
    background: white;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.venue-item:hover {
    border-color: #667eea;
    transform: translateX(4px);
}

.venue-item.active {
    border-color: #667eea;
    background: #f0f4ff;
}

.venue-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #333;
}

.venue-item p {
    font-size: 13px;
    color: #666;
}

/* Editor (правая панель) */
.editor {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
}

.editor-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 18px;
}

.placeholder-content {
    text-align: center;
    max-width: 500px;
    padding: 20px;
}

.placeholder-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
}

.placeholder-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.placeholder-content hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 24px 0;
}

.instructions {
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.instructions h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.instructions ol {
    margin-left: 20px;
    color: #555;
}

.instructions li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.instructions code {
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    color: #667eea;
    border: 1px solid #e0e0e0;
    display: inline-block;
    margin-top: 4px;
}

.editor-form h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #333;
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

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

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

/* File input */
.form-group input[type="file"] {
    display: block;
    width: 100%;
    padding: 10px;
    border: 2px dashed #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.form-group input[type="file"]:hover {
    border-color: #667eea;
}

/* Photo preview */
.photo-preview {
    margin-top: 16px;
    position: relative;
    display: inline-block;
}

.photo-preview img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-remove-photo {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 59, 48, 0.9);
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-remove-photo:hover {
    background: rgb(255, 59, 48);
    transform: scale(1.1);
}

/* Photo method tabs */
.photo-method-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid #e0e0e0;
}

.photo-tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.photo-tab-btn:hover {
    color: #667eea;
}

.photo-tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.photo-method-content {
    display: none;
}

.photo-method-content.active {
    display: block;
}

/* Photo URL input group */
.photo-url-group {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.photo-url-group input[type="text"] {
    flex: 1;
}

.btn-load-preview {
    padding: 12px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-load-preview:hover {
    background: #5568d3;
    transform: translateY(-1px);
}

.btn-load-preview:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.photo-url-error {
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff3f3;
    border-left: 3px solid #ff3b30;
    border-radius: 4px;
    font-size: 13px;
    color: #ff3b30;
    display: none;
}

.photo-url-error.show {
    display: block;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 153, 142, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Form actions */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.form-actions .btn {
    flex: 1;
}

/* Source info */
.source-info {
    margin-top: 32px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.source-info h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.source-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

/* Loader (для кнопок) */
.loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* List Loader (для списков) */
.list-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.list-loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}

.list-loader-text {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notifications */
.notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.notification {
    background: white;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #667eea;
    animation: slideIn 0.3s ease;
}

.notification.success {
    border-left-color: #38ef7d;
}

.notification.error {
    border-left-color: #ff3b30;
}

.notification.info {
    border-left-color: #667eea;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==================== ВКЛАДКИ ==================== */

/* Вкладки в header */
.tabs {
    display: flex;
    gap: 12px;
    justify-content: left;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.tab-btn.active {
    background: white;
    color: #667eea;
    border-color: white;
}

/* Контент вкладок */
.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    flex: 1;
    overflow: hidden;
}


/* ==================== СУЩЕСТВУЮЩИЕ ЗАВЕДЕНИЯ ==================== */

/* Контейнер (3 колонки) */
.existing-venues-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Sidebar категорий (левая колонка) */
.categories-sidebar {
    flex: 0 0 250px;
    background: #f8f9fa;
    border-right: 2px solid #e0e0e0;
    padding: 24px 16px;
    overflow-y: auto;
}

.category-header {
    margin-bottom: 20px;
}

.category-header h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

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

.category-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 8px;
    transition: all 0.2s;
    text-align: left;
}

.category-btn:hover {
    border-color: #667eea;
    background: #f5f7ff;
}

.category-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.category-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.category-btn.active .category-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Список заведений (средняя колонка) */
.venues-list-container {
    flex: 0 0 400px;
    border-right: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

/* Поле поиска */
.search-container {
    position: relative;
    padding: 16px;
    border-bottom: 2px solid #e0e0e0;
    background: #f8f9fa;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: border-color 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
}

.search-input::placeholder {
    color: #999;
}

.clear-search-btn {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    background: #e0e0e0;
    color: #666;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.clear-search-btn:hover {
    background: #667eea;
    color: white;
}

.existing-venues-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.existing-venue-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.existing-venue-item:hover {
    border-color: #667eea;
    background: #f5f7ff;
}

.existing-venue-item.active {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.venue-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.venue-info {
    flex: 1;
    min-width: 0;
}

.venue-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.venue-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Редактор заведений (правая колонка) */
.venue-editor {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
}

/* Кнопка удаления */
.btn-delete {
    background: #e74c3c;
    color: white;
}

.btn-delete:hover {
    background: #c0392b;
}

/* Пагинация */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-top: 2px solid #e0e0e0;
    background: #f8f9fa;
}

.page-btn {
    padding: 8px 14px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 40px;
}

.page-btn:hover {
    border-color: #667eea;
    background: #f5f7ff;
}

.page-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.page-separator {
    padding: 0 8px;
    color: #999;
    font-weight: 500;
}

/* Модальное окно удаления */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s;
}

.modal {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.3s;
}

.modal h3 {
    font-size: 24px;
    margin: 0 0 16px 0;
    color: #333;
}

.modal p {
    font-size: 16px;
    color: #666;
    margin: 0 0 12px 0;
}

.warning-text {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 24px !important;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

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

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar,
    .editor {
        width: 100%;
        border: none;
    }

    .sidebar {
        border-bottom: 2px solid #e0e0e0;
        max-height: 400px;
    }

    /* Для существующих заведений */
    .existing-venues-container {
        flex-direction: column;
    }

    .categories-sidebar,
    .venues-list-container,
    .venue-editor {
        width: 100%;
        border: none;
    }

    .categories-sidebar {
        border-bottom: 2px solid #e0e0e0;
    }

    .venues-list-container {
        border-bottom: 2px solid #e0e0e0;
        max-height: 400px;
    }
}

/* ==========================================
   Login Page Styles
   ========================================== */

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 48px 40px;
    max-width: 420px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 16px;
    color: #777;
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
}

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

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid #c33;
}

.btn-login {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-footer {
    margin-top: 24px;
    text-align: center;
}

.login-hint {
    font-size: 13px;
    color: #777;
    margin: 8px 0;
}

.login-hint code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #667eea;
    font-weight: 600;
}

/* User Info в header (для главной страницы) */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.username {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.btn-logout {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-logout:active {
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive для логина */
@media (max-width: 480px) {
    .login-box {
        padding: 32px 24px;
    }

    .login-header h1 {
        font-size: 24px;
    }
}

.analytics-layout {
    padding: 24px;
}

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

.analytics-header h2 {
    margin: 0 0 6px;
}

.analytics-header p {
    margin: 0;
    color: #666;
}

.analytics-range-switcher {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.range-btn {
    border: 1px solid #d0d7de;
    background: #fff;
    color: #333;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.range-btn.active,
.range-btn:hover {
    border-color: #2f6fed;
    color: #2f6fed;
    background: #eef4ff;
}

.analytics-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.analytics-card {
    background: #fff;
    border: 1px solid #e7ebf0;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.analytics-card-label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.analytics-card strong {
    font-size: 24px;
    color: #0f172a;
}

.analytics-content-panel {
    background: #fff;
    border: 1px solid #e7ebf0;
    border-radius: 16px;
    padding: 20px;
}

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

.analytics-table th,
.analytics-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid #eef1f4;
}

.analytics-table th {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.analytics-table td {
    font-size: 14px;
    color: #1f2937;
}

@media (max-width: 900px) {
    .analytics-header {
        flex-direction: column;
    }

    .analytics-content-panel {
        overflow-x: auto;
    }
}

.scenario-checkboxes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input {
    margin: 0;
}

.form-hint {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 12px;
}

.venue-scenarios {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.scenario-pill {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 999px;
    background: #f1f3f5;
    color: #333;
    font-size: 12px;
}
