:root {
    --brand: #0aac6a;
    --bg: #f8f9fa;
    --fg: #374151;
    --muted: #6b7280;
    --sidebar-bg: radial-gradient(1000px 600px at 10% -10%, rgba(10, 172, 106, 0.10), transparent 60%),
    radial-gradient(900px 500px at 120% 110%, rgba(10, 172, 106, 0.08), transparent 60%),
    #ffffff;
    --sidebar-text: #111111;
    --hover-bg: rgba(255, 255, 255, 0.1);
    --active-bg: rgba(10, 172, 106, 0.15);
    --card-bg: #ffffff;
    --border: #d1d5db;
    --hover-accent: #0aac6a;
    --btn-secondary-bg: #e5e7eb
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro', 'Roboto', sans-serif !important;
    background-color: var(--bg);
    color: var(--fg);
    line-height: 1.5;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-weight: 600;
}

small, .small {
    font-size: 0.833em;
}

.container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: var(--sidebar-bg);
    color: var(--sidebar-text);
    padding: 24px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: clamp(18px, 2.3vw, 28px);
    user-select: none;
    text-rendering: geometricPrecision;
    line-height: 1;
    margin-bottom: 32px;
}

.logo .brand {
    color: #000;
    text-transform: uppercase;
}

.logo .tld {
    color: var(--brand);
    text-transform: lowercase;
}

.slogan {
    color: var(--brand);
    font-size: 16px;
    letter-spacing: 0;
}

.slogan a {
    color: inherit;
    text-decoration: none;
}

.nav-section {
    margin-bottom: 32px;
}

.nav-title {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.7;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 4px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: var(--sidebar-text);
    text-decoration: none;
}

.nav-item:hover {
    background: var(--hover-bg);
}

.nav-item.active {
    background: var(--active-bg);
    font-weight: 500;
}

.nav-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    opacity: 0.8;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--fg);
}

.stat-value {
    font-weight: 600;
}

.main-content {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
    position: relative;
    background: var(--bg);
    color: var(--fg);
}

.auth-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.auth-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--card-bg);
    color: var(--fg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-btn:hover {
    border-color: var(--hover-accent);
    color: var(--hover-accent);
}

.auth-btn.primary {
    background: linear-gradient(135deg, var(--brand) 0%, #00C48C 100%);
    color: white;
    border-color: transparent;
}

.auth-btn.primary:hover {
    box-shadow: 0 4px 12px rgba(79, 125, 243, 0.3);
    color: white;
}

.header {
    margin-bottom: 32px;
}

.header h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 8px;
}

.header p {
    color: var(--muted);
    font-size: 16px;
}

.analysis-blocks {
    margin-bottom: 32px;
}

.analysis-block {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.block-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.block-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--brand) 0%, #00C48C 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.block-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--fg);
}

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

.form-label {
    display: block;
    font-weight: 500;
    color: var(--fg);
    margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    color: var(--fg);
    background: var(--card-bg);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--hover-accent);
    box-shadow: 0 0 0 3px rgba(79, 125, 243, 0.1);
}

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

.form-help {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.settings-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: normal;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, #00C48C 100%);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(10, 172, 106, 0.25);
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    color: var(--fg);
}

.btn-secondary:hover {
    background: rgba(243, 244, 246, 0.8);
    color: var(--fg);
}

.btn-icon {
    margin-right: 8px;
}

.info-block {
    background: rgba(10, 172, 106, 0.1);
    border: 1px solid rgba(10, 172, 106, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    color: var(--fg);
}

.info-title {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--brand);
    margin-bottom: 8px;
}

.info-list {
    list-style: none;
    color: var(--brand);
}

.info-list li {
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.results-section {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--fg);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.results-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--fg);
}

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

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--hover-accent), #0aac6a);
    width: 0;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    margin-bottom: 20px;
}

.results-table:last-child {
    margin-bottom: 0;
}

.results-table th,
.results-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.results-table th {
    background: rgba(243, 244, 246, 0.8); /* светлый фон */
    font-weight: 600;
    color: var(--fg);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
}

.results-table th a {
    color: inherit;
    text-decoration: none;
}

.results-table td {
    font-size: 14px;
    color: var(--fg);
}

.url-cell {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.url-link {
    color: var(--hover-accent);
    text-decoration: none;
}

.url-link:hover {
    text-decoration: underline;
}

.count-badge {
    background: rgba(79, 125, 243, 0.2);
    color: var(--hover-accent);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.type-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.type-analysis {
    background: rgba(10, 172, 106, 0.1);
    color: var(--brand);
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-completed {
    background: rgba(10, 172, 106, 0.1);
    color: var(--brand);
}

.status-processed {
    background: rgba(255, 195, 0, 0.1);
    color: #92400e;
}

.status-failed {
    background: rgba(255, 0, 0, 0.1);
    color: #991b1b;
}

.status-new {
    background: rgba(79, 125, 243, 0.1);
    color: var(--hover-accent);
}

.status-cancelled {
    background: var(--btn-secondary-bg);
    color: var(--fg);
}

.result-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
}

.result-icon.completed {
    background: rgba(10, 172, 106, 0.1);
    color: var(--brand);
}

.result-icon.report {
    background: rgba(79, 125, 243, 0.2);
    color: var(--hover-accent);
}

.result-icon.ai {
    background: rgba(155, 120, 255, 0.1);
    color: #5b21b6;
}

.result-icon.processed {
    background: rgba(255, 195, 0, 0.1);
    color: #92400e;
}

.result-icon.failed {
    background: rgba(255, 0, 0, 0.1);
    color: #991b1b;
}

.result-icon.new {
    background: rgba(79, 125, 243, 0.1);
    color: var(--hover-accent);
}

.result-icon.cancelled {
    background: var(--btn-secondary-bg);
    color: var(--fg);
}

.cost-badge {
    background: rgba(79, 125, 243, 0.1);
    color: var(--hover-accent);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.cost-badge.error {
    background: rgba(255, 0, 0, 0.1);
    color: #991b1b;
}

.action-buttons {
    display: flex;
    gap: 4px;
}

.btn-icon-small {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--btn-secondary-bg);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-icon-small:hover:not(:disabled) {
    background: var(--hover-bg);
}

.btn-icon-small:disabled,
.btn-icon-small.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.match-indicator {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.match-yes {
    color: var(--brand);
}

.match-no {
    color: #dc2626;
}

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

.empty-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    opacity: 0.3;
}

.select2-container--krajee-bs5 .select2-selection--single {
    height: calc(2.25rem + 8px);
    line-height: 2.2;
    padding: 0.375rem 1.5rem 0.375rem 0.5rem;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--fg);
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 20px 0;
    justify-content: center;
    gap: 8px;
}

.pagination li {
    display: inline-block;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    background: var(--card-bg);
    color: var(--fg);
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pagination li a:hover {
    background-color: var(--hover-bg);
    border-color: rgba(0, 0, 0, 0.1);
}

.pagination li.active span,
.pagination li.active a {
    background: linear-gradient(135deg, var(--brand) 0%, #00C48C 100%);
    color: #fff;
    border-color: #00C48C;
    cursor: default;
    border-radius: 8px;
}

.pagination li.disabled span {
    color: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.1);
    cursor: not-allowed;
}

.pagination li.prev a,
.pagination li.next a {
    font-weight: bold;
}

.filters input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 8px;
    background: var(--card-bg);
    color: var(--fg);
}

.td-updated-at {
    position: relative;
}

.datetimepicker {
    display: none;
    position: absolute;
    z-index: 20;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--fg);
}

.grid-view {
    overflow-x: auto;
}

.form-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fg);
    cursor: pointer;
    transition: all 0.2s ease;
    height: 43px;
    box-sizing: border-box;
}

.form-checkbox--advanced {
    margin-top: 30px;
}

.form-checkbox:hover {
    border-color: var(--hover-accent);
    background: rgba(10, 172, 106, 0.03);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--brand);
    cursor: pointer;
}

.advanced-settings {
    margin-top: 15px;
    display: none;
    text-align: left;
}

.advanced-settings.open {
    display: block;
}

.select2-selection__clear {
    display: none;
}

.invalid-feedback {
    color: red;
}

.limit-reached input,
.limit-reached select {
    border-color: red;
}

#usersTable td {
    white-space: nowrap;
}

#regionTree {
    margin-top: 5px;
    max-height: 400px;
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.select2-container--krajee-bs5 #select2-regionSearch-results li.select2-results__option {
    color: var(--sidebar-text);
    background-color: var(--active-bg);
}

.settings-row--analysis .form-checkbox {
    margin-top: 0;
}

.analysis-button {
    display: none;
}

.analysis-button.active {
    display: block;
}

.analysis-report {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    margin-top: 20px;
}

.analysis-report h1,
.analysis-report h2,
.analysis-report h3 {
    color: var(--fg);
    margin-bottom: 16px;
    font-weight: 600;
}

.analysis-report h1 {
    font-size: 28px;
}

.analysis-report h2 {
    font-size: 22px;
    border-bottom: 2px solid var(--brand);
    padding-bottom: 6px;
}

.analysis-report h3 {
    font-size: 18px;
    margin-top: 24px;
}

.analysis-report ul {
    margin: 12px 0 20px 24px;
}

.analysis-report li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.analysis-report table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.analysis-report table th,
.analysis-report table td {
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.analysis-report th:last-child,
.analysis-report td:last-child {
    border-right: none;
}

.analysis-report tr:last-child td {
    border-bottom: none;
}

.analysis-report table th {
    text-align: left;
    background: var(--brand);
    color: #fff;
    padding: 10px 14px;
    font-weight: 500;
}

.analysis-report table th:first-child {
    border-top-left-radius: 8px;
}

.analysis-report table th:last-child {
    border-top-right-radius: 8px;
}

.analysis-report table td {
    padding: 10px 14px;
}

.analysis-report table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.analysis-report .word-cloud span {
    display: inline-block;
    margin: 3px 6px;
    background: rgba(10, 172, 106, .08);
    padding: 3px 6px;
    border-radius: 4px;
    color: var(--fg);
    white-space: nowrap;
}

.analysis-report a {
    color: var(--hover-accent);
    text-decoration: none;
}

.analysis-report a:hover {
    text-decoration: underline;
}

.analysis-report ul a {
    font-weight: 500;
}

.analysis-report p,
.analysis-report > ul,
.analysis-report > table {
    margin-bottom: 24px;
}

.analysis-report #competitors table a {
    font-weight: 500;
}

.analysis-report .empty-text {
    margin-bottom: 0;
}

.analysis-report .nav-tabs {
    display: flex;
    gap: 8px;
    margin: 0;
    list-style: none;
    padding: 0;
}

.analysis-report .nav-tabs li {
    flex: 1;
    margin-bottom: 0;
    padding: 0;
}

.analysis-report .nav-tabs a {
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px 8px 0 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-bottom: none;
    color: var(--fg);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    margin-bottom: 0;
}

.analysis-report .nav-tabs a.active,
.analysis-report .nav-tabs a:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.analysis-report .tab-content {
    background: var(--card-bg);
    overflow: auto;
}

.analysis-report .tab-content form {
    margin: 10px 0;
}

.analysis-report .tab-content .btn {
    margin-top: 5px;
}

.analysis-report .tab-content table {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.analysis-report .tab-content a {
    color: inherit;
}

.analysis-report .tab-content table th:first-child {
    border-top-left-radius: 0;
}

.analysis-report .tab-content table th:last-child {
    border-top-right-radius: 0;
}

.analysis-report .tab {
    display: none;
}

.analysis-report .tab.active {
    display: block;
}

.analysis-report .tab-content table {
    margin: 0;
}

.mobile-header {
    display: none;
}

.select2-container--krajee-bs5 .selection .select2-selection--single {
    height: 43px;
    padding: 12px 16px;
    border-radius: 8px;
}

.results-summary {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.lang-switcher {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.lang-switcher a {
    flex: 1;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--fg);
    text-decoration: none;
    transition: all 0.2s ease;
}

.lang-switcher a:hover {
    border-color: var(--hover-accent);
    color: var(--hover-accent);
    background: rgba(10, 172, 106, 0.05);
}

.lang-switcher a.active {
    background: linear-gradient(135deg, var(--brand) 0%, #00C48C 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(10, 172, 106, 0.25);
}

footer.site {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: normal;
}

.container--footer {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    min-height: auto;
}

.container--footer .logo {
    font-size: 18px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .settings-row {
        display: block;
    }

    .settings-row--analysis {
        display: grid;
    }

    .type-badge {
        white-space: normal;
    }

    .url-cell {
        max-width: 240px;
    }

    .results-table th,
    .results-table td {
        padding: 8px;
    }

    .results-table td {
        font-size: 11px;
    }

    .analysis-report {
        padding: 15px;
    }

    .analysis-report table {
        font-size: 10px;
    }

    .analysis-report table td {
        padding: 7px 9px;
    }
}

@media (max-width: 991px) {
    .results-actions .btn {
        padding: 9px 19px;
        font-size: 11px;
    }

    .main-content,
    .results-section {
        padding: 5px;
    }

    .sidebar {
        width: 180px;
        padding: 15px;
    }

    .url-cell {
        max-width: 210px;
    }

    .results-table th,
    .results-table td {
        padding: 7px;
    }

    .results-table td {
        font-size: 10px;
    }

    .type-badge {
        font-size: 11px;
        padding: 4px 7px;
    }

    .analysis-report {
        padding: 5px;
    }

    .analysis-report h1 {
        font-size: 27px;
    }

    .header p {
        color: var(--muted);
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 260px;
        background: #fff;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform .3s ease;
        box-shadow: 2px 0 8px rgba(0, 0, 0, .15);
        overflow-y: auto;
        padding: 60px 16px 16px;
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    body.sidebar-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .4);
        z-index: 9998;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        height: 50px;
        padding: 0 12px;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
        position: sticky;
        top: 0;
        z-index: 10000;
    }

    .burger-btn {
        font-size: 26px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .main-content {
        padding: 16px;
    }

    .results-header {
        flex-direction: column;
        align-items: stretch;
    }

    .results-table {
        font-size: 12px;
    }

    .results-table th,
    .results-table td {
        padding: 8px 4px;
    }
}

@media (max-width: 575px) {
    body {
        font-size: 0.7rem;
    }

    .auth-buttons {
        top: 10px;
        right: 10px;
    }

    .header h1 {
        font-size: 19px;
    }

    .header p {
        font-size: 14px;
    }

    .form-checkbox {
        padding: 10px 14px;
        font-size: 12px;
        height: 37px;
    }

    .info-block {
        padding: 13px;
    }

    ol, ul {
        padding-left: 0.8rem;
    }

    .info-list li {
        padding-left: 13px;
    }

    .btn {
        font-size: 12px;
    }

    .results-actions .btn {
        font-size: 0;
    }

    .results-actions .btn-icon {
        font-size: 11px;
        margin: 0;
    }

    .settings-row--analysis {
        display: block;
    }

    .analysis-button {
        margin-bottom: 10px;
    }

    #resultsBody {
        overflow: auto;
    }

    .url-cell {
        max-width: none;
    }

    .analysis-report {
        padding: 5px;
        overflow: auto;
    }

    .analysis-report h1 {
        font-size: 15px;
    }

    .analysis-report h1,
    .analysis-report h2,
    .analysis-report h3 {
        margin-bottom: 9px;
    }

    .analysis-report h2 {
        font-size: 12px;
        padding-bottom: 3px;
    }

    .analysis-report table {
        font-size: 10px;
    }

    .settings-row--analysis .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    #word-cloud {
        overflow: auto;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .advanced-settings h2 {
        font-size: 18px;
    }
    .analysis-report .nav-item {
        padding: 9px 11px;
        margin-bottom: 3px;
        font-size: 10px;
    }
}