/* input(3728,1): run-time error CSS1019: Unexpected token, found '}'
input(6387,1): run-time error CSS1019: Unexpected token, found '}' */
@font-face {
    font-family: "Atkinson Hyperlegible";
    src: url("../fonts/Atkinson-Hyperlegible-Regular-102.ttf?v=KN4so_7FzWwOw-IP792Ue-3Ywjw") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Bebas Neue";
    src: url("../fonts/BebasNeue-Regular.ttf?v=sM0j6uGJiWrP3ERttbZ-1KBa2ps") format("truetype");
    font-weight: 400;
    font-style: normal;
}

:root {
    /* Colors */
    --primary-color: #001020;
    --border-color: #e0e0e0;
    --text-gray: #666;
    /* Radius */
    --radius-medium: 12px;
    /* Custom */
    --header-height: 48px;
    --dropdown-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), 0 20px 40px rgba(0, 0, 0, 0.1);
}

html,
body {
    height: 100%;
    margin: 0;
    min-height: 100vh;
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0;
}

html {
    overflow-x: hidden;
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.bg-dots {
    background-color: white;
    background-image: linear-gradient(to bottom, transparent 0%, white 600px), radial-gradient(circle, #bbbbbb 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px;
    background-position: 0 0;
}

.content-wrap {
    flex-grow: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 60px;
}

body.mobile-menu-open {
    overflow: auto;
}

button {
    font-size: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

    h1.stand-out {
        font-family: "Bebas Neue", sans-serif;
        font-size: 6em;
        margin-bottom: 0;
    }

@media (min-width: 768px) {
    h1.stand-out {
        font-size: 8em;
    }
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
}

.text-gray {
    color: var(--text-gray);
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.75rem;
    }

    h3 {
        font-size: 2rem;
    }

    p {
        font-size: 1.2rem;
    }
}

/* Buttons */
.btn-primary {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
}

    .btn-primary:hover {
        background-color: rgb(60, 60, 60);
    }

.btn-outline {
    padding: 10px 20px;
    background-color: white;
    color: black;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
}

    .btn-outline:hover {
        background-color: rgb(245, 245, 245);
    }

/* Button size variants */
.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Inputs */
.input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

/* Feature Icons */
.feature-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .feature-icon:hover {
        transform: translateY(-8px);
    }

.feature-icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: white;
    transition: all 0.3s ease;
}

.feature-icon:hover .feature-icon-container {
    transform: scale(1.1);
}

.feature-icon-container svg,
.feature-icon-container i {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-icon:hover .feature-icon-container svg,
.feature-icon:hover .feature-icon-container i {
    transform: rotate(5deg) scale(1.1);
}

.feature-icon-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.feature-icon-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.3s ease;
}

/* Feature icon variants */
.feature-icon-with-subtitle .feature-icon-title {
    margin: 0 0 0.5rem 0;
}

.feature-icon-without-subtitle .feature-icon-title {
    margin: 0;
}

/* Small Feature Icons */
.small-feature-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 80px;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .small-feature-icon:hover {
        transform: translateY(-6px);
    }

.small-feature-icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    background-color: white;
    transition: all 0.3s ease;
}

.small-feature-icon:hover .small-feature-icon-container {
    transform: scale(1.1);
}

.small-feature-icon-container svg,
.small-feature-icon-container i {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.small-feature-icon:hover .small-feature-icon-container svg,
.small-feature-icon:hover .small-feature-icon-container i {
    transform: rotate(5deg) scale(1.1);
}

.small-feature-icon-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    transition: color 0.3s ease;
}

/* Modal */
.modal-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

    .modal-form .form-group .input-field {
        box-sizing: border-box;
    }

.modal-form .btn-primary {
    width: 100%;
    margin-top: 20px;
}

/* Articles */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

    .article-container h1 {
        font-size: 2.5rem;
        font-weight: 300;
    }

    .article-container p {
        font-size: 1.1rem;
        font-weight: 300;
        line-height: 1.5;
        color: var(--text-gray);
    }

    .article-container hr {
        border: 0.25px solid var(--border-color);
        margin: 40px 0;
    }

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: white;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 20px 0 0 0;
}

.table-header {
    background-color: #f8f9fa;
    border-bottom: 2px solid var(--border-color);
}

.table-header-cell {
    padding: 16px 20px;
    text-align: left;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--primary-color);
    border-right: 1px solid var(--border-color);
}

    .table-header-cell:last-child {
        border-right: none;
    }

.table-row {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

    .table-row:last-child {
        border-bottom: none;
    }

    .table-row:hover {
        background-color: #f8f9fa;
    }

.table-cell {
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 300;
    color: #333;
    border-right: 1px solid #f0f0f0;
    vertical-align: top;
}

    .table-cell:last-child {
        border-right: none;
    }

.table-cell-code {
    font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
    font-weight: 500;
    color: var(--primary-color);
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.table-responsive {
    width: 100%;
    border-radius: var(--radius-medium);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

    .table-responsive .table {
        margin: 0;
        box-shadow: none;
    }

@media (max-width: 1080px) and (min-width: 769px) {
    /* Medium screens - keep table structure but optimize spacing */
    .table-header-cell,
    .table-cell {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .table-header-cell {
        font-size: 0.8rem;
    }

    .table-cell p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin: 0 0 4px 0;
    }

        .table-cell p:last-child {
            margin-bottom: 0;
        }

    .table-cell-code {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    .table {
        margin: 16px 0 0 0;
    }
}

@media (max-width: 768px) {
    .table-responsive {
        box-shadow: none;
    }

    .table,
    .table-header,
    .table tbody {
        display: block;
    }

    .table-header {
        display: none;
    }

    .table-row {
        display: block;
        background-color: white;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-medium);
        margin-bottom: 16px;
        padding: 16px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

        .table-row:hover {
            background-color: white;
        }

        .table-row:last-child {
            margin-bottom: 0;
        }

    .table-cell {
        display: block;
        border: none;
        padding: 8px 0;
        text-align: left;
        position: relative;
        margin-bottom: 12px;
    }

        .table-cell:last-child {
            margin-bottom: 0;
        }

        .table-cell:before {
            content: attr(data-label);
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: block;
            margin-bottom: 4px;
        }

        .table-cell:nth-child(2) {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 12px;
            margin-bottom: 16px;
        }

            .table-cell:nth-child(2):before {
                color: var(--primary-color);
                font-weight: 500;
                font-size: 0.85rem;
            }

            .table-cell:nth-child(2) p {
                font-size: 1.1rem;
                font-weight: 400;
                color: var(--primary-color);
                margin: 0;
            }

        /* Hide empty cells */
        .table-cell:empty,
        .table-cell p:empty {
            display: none;
        }

        .table-cell:has(p:empty) {
            display: none;
        }

        .table-cell:has(p:only-child:empty) {
            display: none;
        }
}

/* Pagination */
.pagination-container {
    margin-top: 8px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    padding: 0;
    margin: 0;
    list-style: none;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

    .pagination li {
        display: inline-block;
    }

    .pagination .page-link {
        display: block;
        padding: 8px 16px;
        text-decoration: none;
        background-color: white;
        border: 1px solid var(--border-color);
        margin-left: -1px;
        color: var(--primary-color);
        font-size: 0.95rem;
        line-height: 1.25;
        transition: all 0.2s ease;
    }

    .pagination li:first-child .page-link {
        border-top-left-radius: var(--radius-medium);
        border-bottom-left-radius: var(--radius-medium);
    }

    .pagination li:last-child .page-link {
        border-top-right-radius: var(--radius-medium);
        border-bottom-right-radius: var(--radius-medium);
    }

    .pagination li.active .page-link {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        z-index: 1;
        position: relative;
    }

    .pagination li:not(.active) .page-link:hover {
        background-color: #f8f9fa;
        color: var(--primary-color);
    }

    .pagination li.disabled .page-link {
        color: #6c757d;
        pointer-events: none;
        background-color: #fff;
    }

@media (max-width: 768px) {
    .pagination .page-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* FOOTER */

.footer-container {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding-top: 150px;
    padding-bottom: 50px;
    box-sizing: border-box;
    margin-top: 50px;
}

.footer-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-left p {
    font-weight: 100;
    font-size: 16px;
    margin: 0;
}

.linkedin-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

    .linkedin-link:hover {
        opacity: 0.8;
        color: white;
    }

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.footer-left {
    flex: 1;
    max-width: 70%;
}

.footer-link {
    color: white;
    text-decoration: none;
}

    .footer-link:hover {
        color: white;
        text-decoration: underline;
    }

.row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.info {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container .row:first-child {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .linkedin-link {
        margin-top: 0;
    }
}

/* HEADER */

.header-container {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--header-height);
    font-size: 14px;
    font-weight: 200;
}

.header-link {
    color: white;
    text-decoration: underline;
}

    .header-link:hover {
        text-decoration: none;
    }

@media (max-width: 768px) {
    .header-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Tooltip */

.tooltip-container {
    position: absolute;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

    .tooltip-container.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.tooltip-content {
    background: #1a1a1a;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    max-width: 300px;
    line-height: 1.4;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    white-space: pre-wrap;
}

.tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #1a1a1a;
}

.tooltip-container.tooltip-below .tooltip-arrow {
    top: -4px;
    border-top-color: transparent;
    border-bottom-color: #1a1a1a;
}

.tooltip-trigger {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

    .tooltip-trigger:hover {
        opacity: 0.7;
    }

/* Accordion */

.accordion-header {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

    .active,
    .accordion-header:hover {
        background-color: #ccc;
    }

.accordion-content {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

    .modal-overlay.show {
        opacity: 1;
    }

.modal-container {
    background: white;
    border-radius: var(--radius-medium);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.show .modal-container {
    transform: scale(1);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-gray);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
}

    .modal-close:hover {
        background-color: #f5f5f5;
        color: var(--primary-color);
    }

.modal-content {
    padding: 48px 24px 24px 24px;
    overflow-y: auto;
    max-height: calc(80vh - 72px);
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
    }

    .modal-content {
        padding: 44px 20px 20px 20px;
        max-height: calc(90vh - 64px);
    }
}

/* Toast  */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    pointer-events: none;
    max-width: 400px;
}

.toast {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    box-shadow: var(--dropdown-shadow);
    margin-bottom: 12px;
    padding: 16px 20px;
    pointer-events: auto;
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.toast--entering {
    transform: translateY(0);
    opacity: 1;
}

.toast--leaving {
    transform: translateY(-10px);
    opacity: 0;
}

.toast--success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.toast--error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.toast--warning {
    background-color: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

.toast--info {
    background-color: #edf1f3;
    color: var(--text-gray);
    border-color: var(--border-color);
}

.toast__content {
    flex: 1;
    min-width: 0;
}

.toast__title {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.toast__message {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
}

.toast__close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

    .toast__close:hover {
        opacity: 1;
    }

.toast__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: currentColor;
    opacity: 0.3;
    border-radius: 0 0 var(--radius-medium) var(--radius-medium);
    transition: width linear;
}

@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .toast {
        margin-bottom: 8px;
        padding: 12px 16px;
        min-height: 50px;
    }

    .toast__title {
        font-size: 0.9rem;
    }

    .toast__message {
        font-size: 0.85rem;
    }
}

/* Curl */
.curl-container {
    width: 100%;
    display: flex;
    gap: 20px;
}

.curl-left-box {
    width: 200px;
    height: 500px;
    background-color: rgb(17, 24, 39);
    flex-shrink: 0;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.curl-right-box {
    flex-grow: 1;
    height: 500px;
    background-color: rgb(17, 24, 39);
    padding: 24px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.curl-button-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.curl-nav-button {
    width: 100%;
    background-color: rgb(31, 41, 55);
    border: none;
    border-radius: 12px;
    padding: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .curl-nav-button:hover {
        opacity: 0.75;
    }

    .curl-nav-button.active {
        background-color: rgb(55, 65, 81);
        opacity: 1;
    }

    .curl-nav-button.inactive {
        opacity: 0.5;
    }

.curl-button-title {
    color: rgb(243, 244, 246);
    font-weight: 500;
}

.curl-button-description {
    color: rgb(156, 163, 175);
    font-size: 14px;
    display: none;
}

.curl-nav-button.active .button-description {
    display: block;
}

.curl-more-info {
    margin-top: 48px;
    color: rgb(75, 85, 99);
    padding: 0 12px;
}

.curl-json-content {
    color: rgb(243, 244, 246);
    font-family: monospace;
    font-size: 12px;
    white-space: pre-wrap;
    margin: 0;
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    pointer-events: none;
    background: transparent !important;
}

.curl-right-box pre {
    margin: 0;
    padding: 0;
    background: transparent;
    overflow: auto;
    height: 100%;
}

@media (max-width: 990px) {
    .curl-container {
        flex-direction: column;
        box-sizing: border-box;
    }

    .curl-left-box {
        width: 100%;
        box-sizing: border-box;
    }

    .curl-right-box {
        width: 100%;
        box-sizing: border-box;
    }
}

/* For accountant */
.for-accountant-container {
    background: white;
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.for-accountant-left {
    background: url("/img/laptop.webp?v=xvR9EJAJkc7V1RsPyWQDE2Cv8kg") center/cover no-repeat;
}

.for-accountant-right {
    background: white;
    padding: 100px 50px;
}

.for-accountant-left,
.for-accountant-right {
    flex: 0 0 50%;
    width: 50%;
    box-sizing: border-box;
}

    .for-accountant-right form {
        display: flex;
        flex-direction: column;
    }

    .for-accountant-right input {
        width: 100%;
        box-sizing: border-box;
        margin: 0 0 1rem 0;
    }

    .for-accountant-right a {
        width: 100%;
        box-sizing: border-box;
        display: block;
        margin: 0;
    }

    .for-accountant-right p {
        margin: 0;
    }

        .for-accountant-right p:first-of-type {
            font-size: 1.5rem;
            font-weight: 400;
        }

        .for-accountant-right p:nth-of-type(2) {
            font-size: 1rem;
            color: var(--text-gray);
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

@media (max-width: 768px) {
    .for-accountant-left {
        display: none;
    }

    .for-accountant-right {
        width: 100%;
        padding: 20px;
        flex: 1;
    }
}

.for-accountant-form-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 0.9rem;
}

    .for-accountant-form-message.success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .for-accountant-form-message.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

.for-accountant-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Page Hero Component */
.page-hero {
    position: relative;
    background-color: transparent;
    padding-bottom: 150px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    margin-top: -30px;
    padding-top: 0px;
    /* CSS custom property for optional background */
    background-image: var(--hero-bg-image, none);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 50% auto;
}

    /* Mindre space under ifall vi inte har en hero image */
    .page-hero:not([style*="--hero-bg-image"]) {
        padding-bottom: 20px;
    }

    .page-hero p {
        max-width: 600px;
    }

    .page-hero h1 {
        max-width: 600px;
    }

/* Responsive breakpoints */
@media (max-width: 1120px) {
    .page-hero p {
        max-width: 450px;
    }
}

@media (max-width: 893px) {
    .page-hero {
        background-image: none !important; /* Override custom property */
        padding-bottom: 0;
    }

        .page-hero:not([style*="--hero-bg-image"]) {
            padding-bottom: 0;
        }

        .page-hero p {
            max-width: 800px;
        }
}

/* Content Section Component */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-section__text {
    order: 1;
}

.content-section__media {
    order: 2;
}

    .content-section__media img {
        width: 100%;
        border-radius: 0.75rem;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: transform 0.2s ease-in-out;
    }

@media (min-width: 768px) {
    .content-section {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .content-section__text {
        flex: 1;
        order: 1;
    }

    .content-section__media {
        flex: 1;
        order: 2;
        cursor: pointer;
    }

        .content-section__media:hover img {
            transform: scale(1.25);
        }

    .content-section--reverse .content-section__text {
        order: 2;
    }

    .content-section--reverse .content-section__media {
        order: 1;
    }
}

/* Section Utilities */
.section--centered {
    text-align: center;
}

.section-spacing {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

@media (max-width: 767px) {
    .section-spacing {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

/* Image overlay styles - consolidated from multiple views */
#image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
}

#overlay-image-element {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

/* Content Section Component */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-section__text {
    order: 1;
}

.content-section__media {
    order: 2;
}

    .content-section__media img {
        width: 100%;
        border-radius: 0.75rem;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: transform 0.2s ease-in-out;
    }

@media (min-width: 768px) {
    .content-section {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .content-section__text {
        flex: 1;
        order: 1;
    }

    .content-section__media {
        flex: 1;
        order: 2;
        cursor: pointer;
    }

        .content-section__media:hover img {
            transform: scale(1.25);
        }

    .content-section--reverse .content-section__text {
        order: 2;
    }

    .content-section--reverse .content-section__media {
        order: 1;
    }
}

/* Section Utilities */
.section--centered {
    text-align: center;
}

.section-spacing {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

@media (max-width: 767px) {
    .section-spacing {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

.green-text {
    color: #008000;
}

/* Site Navigation Header */
.site-nav-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.site-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.site-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.site-nav-left {
  display: flex;
  align-items: center;
}

.site-nav-logo {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-size: 1.125rem;
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: all 0.3s ease;
}

.site-nav-logo:hover {
  opacity: 1;
}

/* Active site indicator */
.site-nav-active {
  color: #1f2937;
  font-weight: 600;
}

.site-nav-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(31, 41, 55, 0.6);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.site-nav-right {
  display: flex;
  align-items: center;
}

.site-nav-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.site-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(31, 41, 55, 0.5);
  transition: width 0.3s ease;
}

.site-nav-link:hover {
  color: #1f2937;
}

.site-nav-link:hover::after {
  width: 100%;
}

.site-nav-dot {
  color: #9ca3af;
  opacity: 0.5;
  margin: 0 16px;
  font-size: 0.6rem;
  vertical-align: middle;
}

.site-nav-vertical-divider {
  display: inline-block;
  width: 1px;
  height: 24px;
  background: rgba(31, 41, 55, 0.15);
  margin: 0 20px;
  vertical-align: middle;
}

/* Mobile dropdown menu */
.site-nav-mobile {
  display: none;
  position: relative;
}

.site-nav-dropdown-toggle {
  background: none;
  border: none;
  color: #1f2937;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav-dropdown-toggle:hover {
  opacity: 0.8;
}

.site-nav-menu-icon {
  width: 24px;
  height: 24px;
}

.site-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 16, 32, 0.12);
  min-width: 180px;
  z-index: 9999;
  animation: slideDown 0.3s ease-out;
}

.site-nav-dropdown.show {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-nav-dropdown-link {
  display: block;
  padding: 12px 16px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.2s;
}

.site-nav-dropdown-link:hover {
  background-color: #f8f9fa;
}

.site-nav-dropdown-link:first-child {
  border-radius: 8px 8px 0 0;
}

.site-nav-dropdown-link:last-child {
  border-radius: 0 0 8px 8px;
}

/* Desktop - show regular links */
.site-nav-desktop {
  display: flex;
  align-items: center;
}

/* TIC Brand Logo */
.site-nav-tic-brand {
  display: inline-flex;
  align-items: center;
  color: #1f2937;
  transition: transform 0.3s ease;
  margin-right: 4px;
}

.site-nav-tic-brand:hover {
  transform: scale(1.05);
}

.site-nav-tic-svg-brand {
  height: 40px;
  width: auto;
  color: #1f2937;
}

/* Top glow effect */
.site-nav-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
  animation: slide 3s linear infinite;
}

@keyframes slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Dropdown divider for mobile */
.site-nav-dropdown-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 8px 0;
}

@media (max-width: 768px) {
  .site-nav-header {
    height: 64px;
  }
  
  .site-nav-logo {
    font-size: 1rem;
  }
  
  .site-nav-tic-svg-brand {
    height: 32px;
  }
  
  .site-nav-vertical-divider {
    margin: 0 12px;
    height: 20px;
  }
  
  /* Hide desktop links on mobile */
  .site-nav-desktop {
    display: none;
  }
  
  /* Show mobile dropdown on mobile */
  .site-nav-mobile {
    display: block;
  }
  
  /* Hide glow on mobile for performance */
  .site-nav-glow {
    display: none;
  }
}

/* Konkurser-sida */
.search-form {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-controls {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 20px;
  align-items: end;
}

.search-button-group {
  display: flex;
  align-items: flex-end;
}

.search-button {
  width: 100%;
  min-width: 80px;
  height: 42px;
  margin: 0;
}

/* Custom Select Styling */
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.2em 1.2em;
  padding-right: 2.5rem;
  cursor: pointer;
}

.custom-select:hover {
  border-color: #666;
}

.custom-select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.search-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-gray);
}

.bankruptcy-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.bankruptcy-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 16px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.bankruptcy-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}

.bankruptcy-header {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.company-name {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 4px 0;
  color: var(--primary-color);
  line-height: 1.3;
}

.company-info {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.org-number {
  font-weight: 500;
  color: #333;
}

.bankruptcy-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-row {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.detail-label {
  font-weight: 400;
  color: var(--text-gray);
  min-width: 100px;
}

.detail-value {
  color: #333;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  background-color: #f3f4f6;
  color: #4b5563;
  border: 1px solid #e5e7eb;
  display: inline-block;
}

.status-badge.status-initiated {
  background-color: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
}

.status-badge.status-terminated {
  background-color: #d1fae5;
  color: #065f46;
  border-color: #a7f3d0;
}

.court-info,
.dates-info {
  padding: 6px 0;
}

.email-link {
  color: #2563eb;
  text-decoration: none;
  margin-left: 8px;
}

.email-link:hover {
  text-decoration: underline;
}

.purpose-section,
.sni-codes-section,
.trustee-section,
.financial-section {
  background-color: #f9fafb;
  border-radius: 6px;
  padding: 12px;
  margin-top: 8px;
}

.section-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: var(--primary-color);
}

.section-title .period {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-gray);
}

.purpose-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

.sni-codes-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sni-code-item {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
}

.sni-code {
  font-weight: 500;
  color: #4b5563;
  min-width: 60px;
}

.sni-name {
  color: #333;
}

.trustee-info {
  font-size: 0.9rem;
}

.trustee-name {
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.trustee-company {
  color: var(--text-gray);
  margin-bottom: 8px;
}

.trustee-address {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.financial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.financial-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.financial-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.financial-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.financial-value.negative {
  color: #dc2626;
}

.financial-value.positive {
  color: #059669;
}

.results-info {
  text-align: center;
  margin: 24px 0;
}

.results-info p {
  font-size: 0.95rem;
}

.results-info strong {
  font-weight: 500;
  color: var(--primary-color);
}

.search-form .input-field {
  box-sizing: border-box;
}

/* Bankruptcy County Filter */
.bankruptcy-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.bankruptcy-county-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  height: fit-content;
  max-height: calc(100vh - var(--header-height) - 5rem);
  overflow-y: auto;
}

.bankruptcy-main-content {
  min-width: 0; /* Prevent grid blowout */
}

.bankruptcy-county-filter-section {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
}

.bankruptcy-county-filter-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.bankruptcy-county-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bankruptcy-county-item {
  margin-bottom: 0.5rem;
}

.bankruptcy-county-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.bankruptcy-county-link:hover {
  background-color: #f5f5f5;
}

.bankruptcy-county-item.active .bankruptcy-county-link {
  background-color: var(--primary-color);
  color: white;
}

.bankruptcy-county-name {
  font-size: 0.9375rem;
}

.bankruptcy-county-count {
  font-weight: 600;
  font-size: 0.875rem;
  background: #f0f0f0;
  padding: 0.125rem 0.5rem;
  border-radius: 12px;
  min-width: 32px;
  text-align: center;
}

.bankruptcy-county-item.active .bankruptcy-county-count {
  background: rgba(255, 255, 255, 0.2);
}

.bankruptcy-county-item.show-all {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.bankruptcy-county-item.show-all .bankruptcy-county-link {
  font-weight: 500;
  color: var(--primary-color);
}

.bankruptcy-county-item.show-all .bankruptcy-county-link:hover {
  background-color: rgba(0, 16, 32, 0.05);
}

.bankruptcy-county-sidebar::-webkit-scrollbar {
  width: 6px;
}

.bankruptcy-county-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.bankruptcy-county-sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.bankruptcy-county-sidebar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.search-reset {
  margin-top: -16px;
  margin-bottom: 24px;
  text-align: center;
}

.reset-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #f3f4f6;
  color: var(--text-gray);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.reset-link:hover {
  background-color: #e5e7eb;
  color: var(--primary-color);
  border-color: #d1d5db;
  text-decoration: none;
}

.reset-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

@media (max-width: 768px) {
  .search-form {
    padding: 16px;
  }
  
  .search-controls {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .search-button-group {
    margin-top: 8px;
  }
  
  .search-button {
    width: 100%;
  }
  
  .bankruptcy-card {
    padding: 16px;
  }
  
  .company-name {
    font-size: 1.25rem;
  }
  
  .company-info {
    flex-direction: column;
    gap: 4px;
  }
  
  .financial-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .detail-row {
    flex-direction: column;
    gap: 4px;
  }
  
  .detail-label {
    min-width: auto;
    font-weight: 500;
  }
  
  .bankruptcy-page-layout {
    grid-template-columns: 1fr;
  }

  .bankruptcy-county-sidebar {
    position: static;
    max-height: none;
    margin-bottom: 2rem;
  }

  .bankruptcy-county-filter-section {
    position: relative;
  }

  .bankruptcy-county-filter-title {
    cursor: pointer;
    padding-right: 2rem;
    position: relative;
  }

  .bankruptcy-county-filter-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
  }

  .bankruptcy-county-filter-section.collapsed .bankruptcy-county-filter-title::after {
    transform: translateY(-50%) rotate(-90deg);
  }

  .bankruptcy-county-filter-section.collapsed .bankruptcy-county-list {
    display: none;
  }

  .bankruptcy-county-list {
    max-height: 300px;
    overflow-y: auto;
  }
}

/* Risk gauge */
.risk-gauge {
  width: 100%;
  background-color: #ffffff;
}

.risk-gauge .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.risk-gauge .gauge-panel {
  flex: 1;
  display: flex;
}

.risk-gauge .chart-area {
  width: 100%;
  max-width: 600px;
  height: 600px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.risk-gauge .chart-wrapper {
  width: 66.666667%;
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem 1rem 0.5rem;
}

.risk-gauge .notifications {
  flex: 1;
  padding: 0 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.risk-gauge .notifications h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}

.risk-gauge .notification-list {
  width: 100%;
}

.risk-gauge .notification {
  display: flex;
  align-items: center;
  height: 3rem;
  margin-bottom: 0.75rem;
}

.risk-gauge .badge {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 0.75rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.risk-gauge .badge.green {
  background-color: #10b981;
}

.risk-gauge .badge.yellow {
  background-color: #f59e0b;
}

.risk-gauge .badge.red {
  background-color: #ef4444;
}

.risk-gauge .notification .text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.5;
}

.risk-gauge .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 2.5rem;
}

.risk-gauge .content p {
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.risk-gauge .chevron {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .risk-gauge .container {
    gap: 2rem;
  }

  .risk-gauge .chart-area {
    height: auto;
    min-height: 350px;
    max-height: 450px;
  }

  .risk-gauge .chart-wrapper {
    width: 80%;
    max-width: 350px;
    padding: 1.5rem 1rem 0.5rem;
  }

  .risk-gauge .content {
    margin-left: 1.5rem;
  }

  .risk-gauge .content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .risk-gauge .container {
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 0 1rem;
  }

  .risk-gauge .gauge-panel {
    width: 100%;
  }

  .risk-gauge .chart-area {
    height: auto;
    min-height: 300px;
    max-height: 400px;
  }

  .risk-gauge .chart-wrapper {
    width: 90%;
    max-width: none;
    padding: 1rem 0.5rem 0.5rem;
  }

  .risk-gauge .notifications {
    padding: 0 1rem 0.5rem;
    margin-top: -1rem;
  }

  .risk-gauge .notifications h2 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .risk-gauge .notification {
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .risk-gauge .notification .text {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .risk-gauge .badge {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.625rem;
    margin-right: 0.5rem;
  }

  .risk-gauge .content {
    margin-left: 0;
    text-align: center;
    padding: 0 1rem;
  }

  .risk-gauge .content h2 {
    font-size: 1.75rem;
  }

  .risk-gauge .content p {
    max-width: none;
    margin-bottom: 1.5rem;
  }
}

/* Map section */
.map-section {
  width: 100%;
  padding: 2rem 1rem;
}

@media (max-width: 899px) {
  .map-section {
    position: relative;
    left: -20px;
    width: 100vw;
    padding: 2rem 20px;
    box-sizing: border-box;
  }

  .map-content-wrapper {
    align-items: center;
    max-width: none;
  }

  .map-container {
    width: 100%;
    max-width: none;
  }
}

.map-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 900px) {
  .map-content-wrapper {
    flex-direction: row;
  }
}

.map-text-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 900px) {
  .map-text-content {
    width: 50%;
    order: 2;
    margin-left: 2rem;
  }
}

.map-text-container {
  max-width: 28rem;
}

@media (min-width: 900px) {
  .map-text-container {
    padding: 2.5rem;
  }
}

.map-text-container p {
  color: var(--text-gray);
}

.map-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1f2937;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  width: fit-content;
  margin-top: 1.75rem;
}

.map-cta-button:hover {
  background-color: #374151;
}

.map-chevron-icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

.map-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: visible;
}

@media (min-width: 900px) {
  .map-content {
    width: 50%;
    order: 1;
  }
}

.map-container {
  position: relative;
  height: 600px;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  overflow: visible;
}

.map-display {
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
}

.map-controls-box {
  position: absolute;
  bottom: 4rem;
  right: -2rem;
  width: fit-content;
  transition: opacity 0.6s ease-in-out;
  display: none;
}

@media (min-width: 900px) {
  .map-controls-box {
    display: block;
  }
}

.map-controls-box.hidden {
  pointer-events: none;
  opacity: 0;
}

.map-controls-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: white;
  padding: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.map-toggle {
  position: relative;
  display: flex;
  height: 2.25rem;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  background-color: white;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.75rem;
}

.map-toggle:hover {
  background-color: #f9fafb;
}

.map-toggle.active {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

.map-toggle-icon {
  width: 1rem;
  height: 1rem;
  color: #374151; /* OR #6b7280 */
  position: absolute;
  right: 0;
  top: 1rem;
  margin-right: -0.25rem;
}

.map-toggle-text {
  font-size: 0.75rem;
  color: #374151;
  white-space: nowrap;
}

.map-hand-icon svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 899px) {
  .map-controls-box {
    display: none;
  }
}

.map-container.hovered .map-controls-box {
  opacity: 0;
  pointer-events: none;
}

.maplibregl-canvas {
  border-radius: 0.75rem;
}

.maplibregl-ctrl-attrib {
  background-color: rgba(255, 255, 255, 0.8) !important;
  border-radius: 0.375rem !important;
  font-size: 0.75rem !important;
  padding: 0.25rem 0.5rem !important;
  margin: 0.5rem !important;
}

.maplibregl-ctrl-attrib a {
  color: #374151 !important;
  text-decoration: none !important;
}

.maplibregl-ctrl-attrib a:hover {
  text-decoration: underline !important;
}

/* Satellite */
.satellite-images-section {
  width: 100%;
}

@media (max-width: 899px) {
  .satellite-images-section {
    position: relative;
    left: -20px;
    width: 100vw;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .satellite-content-wrapper {
    align-items: center;
    max-width: none;
  }

  .satellite-images-split {
    width: 100%;
    max-width: none;
  }
}

.satellite-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 900px) {
  .satellite-content-wrapper {
    flex-direction: row;
  }
}

.satellite-text-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 900px) {
  .satellite-text-content {
    width: 50%;
    justify-content: center;
  }
}

.text-container {
  max-width: 28rem;
}

@media (min-width: 900px) {
  .text-container {
    margin-left: 0;
  }
}

.text-container p {
  color: var(--text-gray);
}

.satellite-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1f2937;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  width: fit-content;
}

.satellite-cta-button:hover {
  background-color: #374151;
}

.satellite-chevron-icon {
  width: 1rem;
  height: 1rem;
}

.satellite-image-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

@media (min-width: 900px) {
  .satellite-image-content {
    width: 50%;
  }
}

.satellite-image-content.fullscreen {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}

.satellite-fullscreen-toggle {
  position: absolute;
  right: 0.25rem;
  top: 1rem;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: white;
}

.satellite-fullscreen-toggle:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.satellite-fullscreen-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.satellite-images-split {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  cursor: ew-resize;
  user-select: none;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #f3f4f6;
  --slider-position: 50%;
  --clip-position: 50%;
  will-change: transform;
  transform: translateZ(0);
}

.satellite-background-image,
.satellite-foreground-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.satellite-foreground-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 var(--clip-position, 50%) 0 0);
  transition: clip-path 0.1s ease-out;
  will-change: clip-path;
  transform: translateZ(0);
}

.satellite-images-split.dragging .satellite-foreground-container {
  transition: none;
}

.year-label {
  position: absolute;
  bottom: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
  pointer-events: none;
  transform-origin: left bottom;
  opacity: var(--label-opacity, 1);
  transform: scale(var(--label-scale, 1));
}

.satellite-images-split.dragging .year-label {
  transition: none;
}

.left-label {
  left: 0.75rem;
  transform-origin: left bottom;
}

.right-label {
  right: 0.75rem;
  transform-origin: right bottom;
}

.satellite-images-split:hover .year-label {
  background-color: rgba(0, 0, 0, 0.6);
}

.satellite-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  left: var(--slider-position, 50%);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  cursor: ew-resize;
  touch-action: none;
  transition: left 0.1s ease-out;
  will-change: left;
  transform: translateX(-50%) translateZ(0);
}

.satellite-images-split.dragging .satellite-slider-line {
  transition: none;
}

.satellite-slider-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: ew-resize;
  border-radius: 50%;
  background-color: white;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
  outline: none;
  will-change: transform;
  transform: translate(-50%, -50%) translateZ(0);
}

.satellite-slider-handle:focus {
  opacity: 1;
}

.satellite-slider-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #374151;
  transition: transform 0.2s ease;
  display: block;
}

.satellite-images-split.hovered .slider-handle {
  opacity: 0;
}

.satellite-images-split.hovered:hover .slider-handle {
  opacity: 1;
}

.satellite-competitor-box {
  position: absolute;
  left: 0;
  top: 2.5rem;
  margin-left: -2.5rem;
  width: 33.333333%;
  max-width: 250px;
  transition: opacity 0.3s ease-in-out;
  display: none;
}

@media (min-width: 900px) {
  .satellite-competitor-box {
    display: block;
  }
}

.satellite-competitor-box.hidden {
  pointer-events: none;
  opacity: 0;
}

.satellite-competitor-content {
  position: relative;
  border-radius: 0.75rem;
}

.satellite-competitor-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid #1f2937;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: block;
}

.satellite-competitor-pin {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: -0.75rem;
  margin-top: -0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  border: 2px solid white;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.satellite-competitor-pin img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.competitor-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
}

.text-box {
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 0.5rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
}

.sub-text {
  margin: 0;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.125rem;
}

.image-controls-box {
  transition: opacity 0.3s ease-in-out;
  display: none;
}

@media (min-width: 900px) {
  .image-controls-box {
    display: block;
  }
}

.image-controls-box.hidden {
  pointer-events: none;
  opacity: 0;
}

.controls-content {
  position: absolute;
  bottom: 5rem;
  left: 0;
  margin-left: -4rem;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: white;
  padding: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.year-select {
  width: 5rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: white;
  font-size: 0.875rem;
  pointer-events: none;
}

.vs-text {
  color: #6b7280;
  font-size: 0.875rem;
}

.filters-toggle {
  height: 2.25rem;
  width: 2.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  background-color: white;
  padding: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.filters-toggle:hover {
  background-color: #f9fafb;
}

.filters-icon {
  width: 1rem;
  height: 1rem;
}

.satellite-content-wrapper.fullscreen .satellite-text-content {
  display: none;
}

.satellite-content-wrapper.fullscreen .satellite-image-content {
  width: 100%;
  max-width: 72rem;
}

.satellite-content-wrapper.fullscreen .competitor-box,
.satellite-content-wrapper.fullscreen .image-controls-box {
  display: none;
}

/* Document */
.official-documents-section {
    width: 100%;
    overflow: visible;
}

.official-documents-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.official-documents-text-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.official-documents-text-container {
    max-width: 600px;
    text-align: center;
}

    .official-documents-text-container h2 {
        margin-bottom: 1rem;
        color: #1f2937;
    }

    .official-documents-text-container p {
        color: var(--text-gray);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

.official-documents-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1f2937;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    width: fit-content;
}

    .cta-button:hover {
        background-color: #374151;
    }

.official-documents-chevron-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.official-documents-documents-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: visible;
}

.official-documents-documents-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    overflow: visible;
    padding: 2rem 0;
    align-items: center;
}

@media (min-width: 900px) {
    .official-documents-documents-container {
        flex-direction: row;
        gap: 3rem;
        padding: 0;
        justify-content: center;
        align-items: flex-start;
    }
}

.official-documents-document {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1.414;
    background-color: white;
    border: 2px solid #d1d5db;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.03);
    position: relative;
    transform: none;
    transition: none;
    overflow: hidden;
}

@media (min-width: 900px) {
    .official-documents-official-documents-document {
        width: auto;
        max-width: 420px;
        flex: 0 0 auto;
    }
}

.official-documents-annual-report-document {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.official-documents-protocol-document {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.official-documents-document::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e5e7eb 0%, #d1d5db 50%, #e5e7eb 100%);
}

.official-documents-document-content {
    padding: 1.2rem;
    height: 100%;
    font-size: 0.65rem;
    line-height: 1.2;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

@media (min-width: 900px) {
    .official-documents-document-content {
        padding: 1.8rem;
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

.annual-report {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    height: 100%;
    min-height: 0;
}

@media (min-width: 900px) {
    .annual-report {
        gap: 1rem;
    }
}

.official-documents-document-header {
    text-align: center;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .official-documents-document-header {
        padding-bottom: 0.75rem;
    }
}

.official-documents-document-subtitle {
    font-size: 0.6rem;
    margin-bottom: 0.6rem;
    color: #6b7280;
}

@media (min-width: 900px) {
    .official-documents-document-subtitle {
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
    }
}

.official-documents-company-name {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.4rem;
    color: #1f2937;
}

@media (min-width: 900px) {
    .official-documents-company-name {
        font-size: 1rem;
    }
}

.official-documents-org-number {
    font-size: 0.6rem;
    margin-bottom: 0.6rem;
    color: #6b7280;
}

@media (min-width: 900px) {
    .official-documents-org-number {
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
    }
}

.official-documents-period {
    font-size: 0.6rem;
    color: #6b7280;
}

@media (min-width: 900px) {
    .official-documents-period {
        font-size: 0.65rem;
    }
}

.official-documents-financial-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.official-documents-section-title {
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
    color: #1f2937;
    border-bottom: 2px solid #1f2937;
    padding-bottom: 0.2rem;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .official-documents-section-title {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.25rem;
    }
}

.official-documents-balance-table {
    background-color: #f9fafb;
    border-radius: 0.25rem;
    overflow: hidden;
    flex: 1;
    border: 1px solid #e5e7eb;
    min-height: 0;
}

.official-documents-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0.4rem;
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.6rem;
}

@media (min-width: 900px) {
    .official-documents-table-row {
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }
}

.official-documents-table-row:last-child {
    border-bottom: none;
}

.official-documents-header-row {
    background-color: #f3f4f6;
    color: #1f2937;
    font-weight: bold;
    border-bottom: 2px solid #d1d5db;
}

.official-documents-table-label {
    color: #374151;
    font-weight: 500;
}

.official-documents-table-value {
    text-align: right;
    color: #374151;
    font-weight: 500;
}

.official-documents-header-row .table-label,
.official-documents-header-row .table-value {
    color: #1f2937;
    font-weight: bold;
}

.official-documents-discrepancy-row {
    background-color: #fef2f2;
    border-left: 3px solid #ef4444;
}

.official-documents-discrepancy-highlight {
    background-color: #fee2e2;
    color: #dc2626;
    font-weight: bold;
    padding: 0.15rem 0.3rem;
    border-radius: 0.15rem;
    border: 1px solid #fca5a5;
}

@media (min-width: 900px) {
    .official-documents-discrepancy-highlight {
        padding: 0.2rem 0.4rem;
        border-radius: 0.2rem;
    }
}

.official-documents-total-row {
    background-color: #f3f4f6;
    font-weight: bold;
}

.official-documents-discrepancy-tooltip {
    margin-top: 0.8rem;
    background-color: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 0.4rem;
    padding: 0.8rem;
    font-size: 0.7rem;
    color: #dc2626;
    flex-shrink: 0;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.1), 0 2px 4px -1px rgba(239, 68, 68, 0.06);
}

@media (min-width: 900px) {
    .official-documents-discrepancy-tooltip {
        margin-top: 1rem;
        padding: 1rem;
        font-size: 0.8rem;
        border-radius: 0.5rem;
        border-width: 3px;
    }
}

.official-documents-protocol-title {
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.6rem;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .official-documents-protocol-title {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        padding-bottom: 0.75rem;
    }
}

.official-documents-protocol-section {
    margin-bottom: 0.6rem;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .official-documents-protocol-section {
        margin-bottom: 0.75rem;
    }
}

.official-documents-protocol-section .section-title {
    font-size: 0.65rem;
    font-weight: bold;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.15rem;
    margin-bottom: 0.3rem;
    color: #1f2937;
}

@media (min-width: 900px) {
    .official-documents-protocol-section .section-title {
        font-size: 0.7rem;
        padding-bottom: 0.2rem;
        margin-bottom: 0.4rem;
    }
}

.official-documents-highlighted-section {
    background-color: #fef3c7;
    padding: 0.15rem 0.3rem;
    border-radius: 0.15rem;
    border: 1px solid #f59e0b;
}

@media (min-width: 900px) {
    .official-documents-highlighted-section {
        padding: 0.2rem 0.4rem;
        border-radius: 0.2rem;
    }
}

.official-documents-protocol-section p {
    font-size: 0.65rem;
    line-height: 1.2;
    color: #374151;
}

@media (min-width: 900px) {
    .official-documents-protocol-section p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

.official-documents-signature-section {
    margin-top: 0.8rem;
    padding-top: 0.6rem;
    border-top: 2px solid #d1d5db;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .official-documents-signature-section {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
}

.official-documents-signature-label {
    font-size: 0.65rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #1f2937;
}

@media (min-width: 900px) {
    .official-documents-signature-label {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
}

.official-documents-signature-name {
    font-size: 0.65rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 0.15rem;
}

@media (min-width: 900px) {
    .official-documents-signature-name {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
}

.official-documents-signature-title {
    font-size: 0.6rem;
    color: #6b7280;
}

@media (min-width: 900px) {
    .official-documents-signature-title {
        font-size: 0.65rem;
    }
}

.official-documents-highlighted-signature {
    background-color: #fef3c7;
    padding: 0.15rem 0.3rem;
    border-radius: 0.15rem;
    border: 1px solid #f59e0b;
    display: inline-block;
}

@media (min-width: 900px) {
    .official-documents-highlighted-signature {
        padding: 0.2rem 0.4rem;
        border-radius: 0.2rem;
    }
}

.official-documents-protocol-tooltip {
    position: absolute;
    background-color: white;
    border: 2px solid #6b7280;
    border-radius: 0.4rem;
    padding: 0.6rem;
    font-size: 0.6rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 50;
    max-width: 10rem;
    line-height: 1.2;
}

@media (min-width: 900px) {
    .official-documents-protocol-tooltip {
        padding: 0.75rem;
        font-size: 0.7rem;
        max-width: 12rem;
        border-radius: 0.5rem;
        line-height: 1.3;
    }
}

.official-documents-tooltip-1 {
    top: 35%;
    right: 0.8rem;
    left: auto;
}

@media (min-width: 900px) {
    .official-documents-tooltip-1 {
        right: 1rem;
        top: 30%;
    }
}

.official-documents-tooltip-2 {
    bottom: 15%;
    right: 0.8rem;
    left: auto;
}

@media (min-width: 900px) {
    .official-documents-tooltip-2 {
        right: 1rem;
        bottom: 5%;
    }
}

@media (max-width: 899px) {
    .official-documents-documents-container {
        padding: 1rem 0;
    }
}

}

/* Fast search */
.fast-search-section {
    background: #ffffff;
}

.fast-search-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 900px) {
    .fast-search-content-wrapper {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2rem;
    }
}

.search-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .search-content {
        width: 100%;
    }
}

.fast-search-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 901px) {
    .text-content {
        text-align: left;
    }
}

@media (max-width: 900px) {
    .text-content {
        width: 100%;
        text-align: center;
    }
}

.fast-search-text-container {
    max-width: 480px;
    padding-left: 5rem;
}

@media (max-width: 900px) {
    .fast-search-text-container {
        padding-left: 0;
        margin: 0 auto;
    }
}

.fast-search-chevron-icon {
    width: 1rem;
    height: 1rem;
}

.search-container {
    width: 100%;
    max-width: 36rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.25rem;
    position: relative;
}

@media (max-width: 900px) {
    .search-container {
        max-width: 100%;
    }
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.search-input {
    display: flex;
    align-items: center;
    height: 3rem;
    width: 100%;
    border: 2px solid #3b82f6;
    border-radius: 0.375rem;
    padding: 0.5rem;
    font-size: 1.125rem;
    background: white;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    gap: 0.25rem;
    box-sizing: border-box;
}

.search-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
    margin-right: 0.25rem;
}

.search-text {
    color: #1f2937;
}

.cursor-blink {
    display: inline-block;
    width: 2px;
    height: 1.25rem;
    background: #1f2937;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.search-results {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.result-category {
    margin-bottom: 1rem;
}

.category-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.75rem;
    position: relative;
}

    .result-item.selected {
        background: #f3f4f6;
    }

.result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 0.375rem;
    flex-shrink: 0;
}

    .result-icon img {
        width: 1.25rem;
        height: 1.25rem;
        color: #6b7280;
    }

.result-content {
    flex: 1;
    overflow: hidden;
}

.result-title {
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-details {
    font-size: 0.875rem;
    color: #4b5563;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.highlight {
    background: #fef3c7;
    padding: 0.125rem 0;
    border-radius: 0.125rem;
}

.result-badge {
    margin-left: auto;
    align-self: center;
    white-space: nowrap;
    background: #f3f4f6;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.search-popover {
    position: absolute;
    right: -6.25rem;
    top: 15rem;
    width: 12.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 0.5rem;
    font-size: 0.875rem;
    z-index: 10;
}

@media (max-width: 900px) {
    .search-popover {
        right: 0.25rem;
    }
}

.fast-search-popover-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

    .fast-search-popover-item:hover {
        background: #f3f4f6;
        transform: translateX(2px);
    }

    .fast-search-popover-item.highlighted {
        background: #f3f4f6;
    }

        .fast-search-popover-item.highlighted:hover {
            background: #e5e7eb;
        }

    .fast-search-popover-item img {
        width: 1rem;
        height: 1rem;
        color: #6b7280;
    }

.fast-search-hand-icon {
    position: absolute;
    right: 1.5rem;
    top: 0.75rem;
}

    .fast-search-hand-icon img {
        width: 1rem;
        height: 1rem;
    }



/* Our sources */
.our-sources-container {
    --text-gray: #999;
    background-color: var(--primary-color);
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-medium);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .our-sources-image-container {
    position: relative;
    padding: 10px;
    border-radius: var(--radius-medium);
    background: black;
    z-index: 1;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  
  .our-sources-image-container::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(
      45deg,
      #ff0080,
      #ff8c00,
      #40e0d0,
      #8a2be2,
      #ff0080,
      #ff8c00,
      #40e0d0,
      #8a2be2
    );
    background-size: 400% 400%;
    border-radius: calc(var(--radius-medium) + 1px);
    z-index: -1;
    animation: gradientShift 4s ease infinite;
  }
  
  .our-sources-image-container::after {
    content: "";
    position: absolute;
    inset: -15px;
    background: linear-gradient(
      45deg,
      #ff0080,
      #ff8c00,
      #40e0d0,
      #8a2be2,
      #ff0080,
      #ff8c00,
      #40e0d0,
      #8a2be2
    );
    background-size: 400% 400%;
    border-radius: calc(var(--radius-medium) + 15px);
    z-index: -2;
    filter: blur(40px);
    opacity: 0.6;
    animation: gradientShift 4s ease infinite;
  }
  
  .our-sources-logos-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    max-width: 700px;
    width: 100%;
    justify-items: center;
  }
  
  .our-sources-logos-top {
    margin-bottom: 20px;
  }
  
  .our-sources-logos-bottom {
    margin-top: 20px;
  }
  
  .our-sources-icon-wrapper {
    width: 75px;
    height: 75px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-medium);
    background: linear-gradient(
      to bottom,
      var(--primary-color),
      rgba(255, 255, 255, 0.1)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: float 4s ease-in-out infinite;
  }
  
  .our-sources-icon-wrapper:nth-child(1) {
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 0s;
  }
  
  .our-sources-icon-wrapper:nth-child(2) {
    animation: floatReverse 4.2s ease-in-out infinite;
    animation-delay: 0.3s;
  }
  
  .our-sources-icon-wrapper:nth-child(3) {
    animation: float 3.8s ease-in-out infinite;
    animation-delay: 0.7s;
  }
  
  .our-sources-icon-wrapper:nth-child(4) {
    animation: floatReverse 4.5s ease-in-out infinite;
    animation-delay: 1.1s;
  }
  
  .our-sources-icon-wrapper:nth-child(5) {
    animation: float 3.2s ease-in-out infinite;
    animation-delay: 1.5s;
  }
  
  .our-sources-icon-wrapper:nth-child(6) {
    animation: floatReverse 4.8s ease-in-out infinite;
    animation-delay: 0.9s;
  }
  
  .our-sources-icon-wrapper:nth-child(7) {
    animation: float 3.6s ease-in-out infinite;
    animation-delay: 1.8s;
  }
  
  .our-sources-icon-wrapper:hover {
    transform: scale(1.1);
    animation-play-state: paused;
  }
  
  .our-sources-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .icon-wrapper:hover .logo {
    opacity: 1;
  }
  
  .our-sources-text-content {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .our-sources-text-content h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2rem;
  }
  
  .our-sources-text-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .our-sources-tic-logo {
    max-width: 150px;
    height: auto;
    margin: 0;
  }
  
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
  
    50% {
      background-position: 100% 50%;
    }
  
    100% {
      background-position: 0% 50%;
    }
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateX(0px) translateY(0px);
    }
  
    25% {
      transform: translateX(2px) translateY(-1px);
    }
  
    50% {
      transform: translateX(-1px) translateY(-2px);
    }
  
    75% {
      transform: translateX(-2px) translateY(1px);
    }
  }
  
  @keyframes floatReverse {
    0%,
    100% {
      transform: translateX(0px) translateY(0px);
    }
  
    25% {
      transform: translateX(-2px) translateY(1px);
    }
  
    50% {
      transform: translateX(1px) translateY(2px);
    }
  
    75% {
      transform: translateX(2px) translateY(-1px);
    }
  }
  
  @media (min-width: 769px) {
    .our-sources-container {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .our-sources-container {
      margin: 0 auto;
      padding: 15px;
    }
  
    .our-sources-logos-grid {
      grid-template-columns: repeat(4, 1fr);
      max-width: 400px;
      gap: 15px;
    }
  
    .our-sources-icon-wrapper {
      width: 60px;
      height: 60px;
    }
  
    .our-sources-text-content h3 {
      font-size: 1.5rem;
    }
  
    .our-sources-text-content p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .our-sources-container {
      margin: 0 auto;
      padding: 10px;
    }
  
    .our-sources-logos-grid {
      grid-template-columns: repeat(3, 1fr);
      max-width: 280px;
      gap: 10px;
    }
  
    .our-sources-icon-wrapper {
      width: 45px;
      height: 45px;
    }
  
    .our-sources-text-content h3 {
      font-size: 1.2rem;
    }
  
    .our-sources-text-content p {
      font-size: 0.9rem;
    }
  
    .our-sources-image-container {
      margin: 15px 0;
    }
  
    .our-sources-tic-logo {
      max-width: 120px;
    }
  }

  /* Navbar */

.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: 20px 0;
  margin-top: 40px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  transition: margin-top 0.3s ease;
}

.navbar-wrapper.scrolled {
  margin-top: 0;
}

.navbar {
  padding: 15px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  width: fit-content;
  min-width: 600px;
  border-radius: var(--radius-medium);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.navbar:has(.dropdown[data-dropdown-height="525"]:hover) {
  padding-bottom: 525px;
  box-shadow: var(--dropdown-shadow);
}

.navbar:has(.dropdown[data-dropdown-height="316"]:hover) {
  padding-bottom: 290px;
  box-shadow: var(--dropdown-shadow);
}

.navbar:has(.dropdown[data-dropdown-height="270"]:hover) {
  padding-bottom: 270px;
  box-shadow: var(--dropdown-shadow);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.navbar-logo svg {
  height: 20px;
  width: auto;
  display: block;
}

.navbar-logo a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.navbar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  margin-left: 40px;
  margin-right: 40px;
}

.navbar-links li {
  margin-left: 30px;
  position: relative;
}

.navbar-links li:first-child {
  margin-left: 0;
}

.navbar-links a {
  text-decoration: none;
  font-weight: 300;
  color: black;
}

.navbar-links a:hover {
  text-decoration: underline;
}

.dropdown {
  position: relative;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 60px;
  background: transparent;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dropdown:hover::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown.force-hover::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown.force-hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 15px;
  left: -10px;
  width: max-content;
  min-width: 220px;
  max-width: 300px;
  padding: 20px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
}

.dropdown.force-hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 10px 15px;
  color: black;
  text-decoration: none;
  font-weight: 300;
  text-align: left;
  border-radius: 6px;
  min-height: 46px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  white-space: nowrap;
}

.menu-dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.dropdown-menu a:hover {
  text-decoration: underline;
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 30px;
  height: 30px;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-sheet {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: white;
  z-index: 2002;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-menu-sheet.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background-color: white;
}

.mobile-menu-logo svg {
  height: 20px;
  width: auto;
  display: block;
  color: black;
}

.mobile-menu-logo a {
  display: block;
  text-decoration: none;
  color: black;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: black;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 30px 0;
  flex: 1;
  overflow-y: auto;
  background-color: white;
}

.mobile-menu-links li {
  margin: 0;
}

.mobile-menu-links a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  color: black;
  font-weight: 300;
  font-size: 1.1rem;
  border-bottom: none;
  transition: text-decoration 0.2s ease;
}

.mobile-menu-links a:hover {
  text-decoration: underline;
  background-color: transparent;
}

.mobile-dropdown {
  position: relative;
}

.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: white;
  display: none;
}

.mobile-submenu li {
  margin: 0;
}

.mobile-submenu a {
  padding: 15px 40px;
  font-size: 1rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-submenu .menu-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.mobile-submenu a:hover {
  background-color: #f5f5f5;
  text-decoration: none;
}

.mobile-dropdown > span:hover {
  background-color: #f5f5f5;
}

.mobile-dropdown > span {
  position: relative;
  display: block;
  padding: 20px 20px;
  color: black;
  font-weight: 300;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-dropdown > span::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.mobile-dropdown.active > span::after {
  content: "−";
}

.mobile-login-btn {
  background-color: black !important;
  color: white !important;
  margin: 20px 20px 0 20px;
  border-radius: 8px;
  text-align: center;
  border-bottom: none !important;
  padding: 15px 20px !important;
  font-size: 1rem !important;
}

.mobile-login-btn:hover {
  background-color: #333 !important;
  text-decoration: none !important;
}

/* Tablet */
@media (max-width: 1274px) and (min-width: 1041px) {
  .navbar-wrapper {
    padding: 20px 0;
    margin-top: 40px;
  }

  .navbar {
    padding: 12px 10px;
    min-width: 580px;
  }

  .navbar-container {
    padding: 0 5px;
  }

  .navbar-logo svg {
    height: 18px;
  }

  .navbar-links {
    margin-left: 20px;
    margin-right: 20px;
  }

  .navbar-links li {
    margin-left: 20px;
  }

  .navbar-links a {
    font-size: 0.85rem;
    font-weight: 300;
    white-space: nowrap;
  }

  .desktop-login {
    font-size: 0.85rem;
  }

  .dropdown-menu {
    width: max-content;
    min-width: 200px;
    max-width: 280px;
    padding: 15px 0;
    left: -10px;
    margin: 0;
    top: 14px;
  }

  .dropdown-menu li {
    margin: 0;
    padding: 0;
  }

  .dropdown-menu a {
    padding: 8px 15px;
    text-align: left;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
    box-sizing: border-box;
    width: 100%;
    font-size: 0.85rem;
    gap: 8px;
    white-space: nowrap;
  }

  .menu-dot {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
  }

  .dropdown::before {
    width: 500px;
  }

  .navbar:has(.dropdown[data-dropdown-height="362"]:hover) {
    padding-bottom: 395px;
  }

  .navbar:has(.dropdown[data-dropdown-height="316"]:hover) {
    padding-bottom: 260px;
  }

  .navbar:has(.dropdown[data-dropdown-height="270"]:hover) {
    padding-bottom: 240px;
  }
}

/* Mobile */
@media (max-width: 1040px) {
  .navbar-wrapper {
    padding: 0px;
    padding-top: 20px;
  }

  .navbar {
    width: calc(100% - 40px);
    min-width: auto;
    padding: 15px 20px;
  }

  .navbar-container {
    padding: 0 20px;
  }

  .navbar-links,
  .desktop-login {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 1274px) and (min-width: 1041px) {
  .signup-btn {
    padding: 8px 16px !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 1040px) {
  .signup-btn {
    display: none !important;
  }
}

/* Bankruptcy County Filter Tablet */
@media (min-width: 769px) and (max-width: 1080px) {
  .bankruptcy-page-layout {
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
  }

  .bankruptcy-county-filter-section {
    padding: 1.25rem;
  }

  .bankruptcy-county-link {
    padding: 0.375rem 0.625rem;
  }
}

/* Bankruptcy County Filter Large Screens */
@media (min-width: 1400px) {
  .bankruptcy-page-layout {
    grid-template-columns: 320px 1fr;
  }
}



/* Orb */
.orb-graph-section .graph-content {
  position: relative;
}

.orb-graph-section .graph-container {
  position: relative;
  background: white;
  border-radius: var(--radius-medium);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.orb-graph-section .demo-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: white;
  color: black;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.orb-graph-section .graph-display {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-medium);
}

.orb-graph-section .node-info-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 20;
  max-width: 320px;
  min-width: 280px;
  border: 1px solid var(--border-color);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.orb-graph-section .overlay-content {
  padding: 16px;
  position: relative;
}

.orb-graph-section .close-button {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-gray);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  z-index: 1;
}

.orb-graph-section .close-button:hover {
  background: #f3f4f6;
  color: #374151;
}

.orb-graph-section .node-details h3 {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  padding-right: 30px;
}

.orb-graph-section .node-details .detail-item {
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.orb-graph-section .node-details .detail-label {
  font-weight: 600;
  color: #374151;
  margin-right: 8px;
}

.orb-graph-section .node-details .detail-value {
  color: var(--text-gray);
}

.orb-graph-section .node-details .node-type {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.orb-graph-section .node-details .node-type.person {
  background: #dbeafe;
  color: #1e40af;
}

.orb-graph-section .node-details .node-type.company {
  background: #dcfce7;
  color: #166534;
}

.orb-graph-section .node-details .node-type.notification {
  background: #fef3c7;
  color: #92400e;
}

.orb-graph-section .node-details .node-type.govern {
  background: #f3e8ff;
  color: #7c3aed;
}

@media (max-width: 768px) {
  .orb-graph-section {
    padding: 0;
  }

  .orb-graph-section .graph-display {
    height: 400px;
  }

  .orb-graph-section .node-info-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: calc(100vw - 32px);
    min-width: auto;
    width: calc(100vw - 32px);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
}

/* Curl examples */
.curl-example-section {
  background: #ffffff;
}

.curl-example-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 900px) {
  .curl-example-content-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2rem;
  }
}

.curl-example-box-content {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  max-width: 50%;
}

@media (max-width: 900px) {
  .curl-example-box-content {
    width: 100%;
    max-width: 100%;
  }
}

.curl-example-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 901px) {
  .curl-example-text-content {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .curl-example-text-content {
    width: 100%;
    text-align: center;
  }
}

.curl-example-text-container {
  max-width: 480px;
  padding-left: 5rem;
}

@media (max-width: 900px) {
  .curl-example-text-container {
    padding-left: 0;
    margin: 0 auto;
  }
}

.curl-example-terminal {
  width: 36rem;
  max-width: 36rem;
  min-width: 36rem;
  height: 400px; /* Fixed height */
  min-height: 400px; /* Ensure minimum height */
  background: #1a1a1a;
  border-radius: 1rem;
  border: 1px solid #333;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
    0 4px 6px -2px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  position: relative;
  overflow: hidden; /* Prevent container from growing */
  box-sizing: border-box; /* Include padding in height calculation */
}

.curl-example-terminal-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #333;
  height: 2rem; /* Fixed header height */
  flex-shrink: 0; /* Don't shrink header */
}

.curl-example-terminal-dots {
  display: flex;
  gap: 0.5rem;
}

.curl-example-terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.curl-example-terminal-dot.red {
  background: #ff5f56;
}

.curl-example-terminal-dot.yellow {
  background: #ffbd2e;
}

.curl-example-terminal-dot.green {
  background: #27ca3f;
}

.curl-example-terminal-title {
  margin-left: 1rem;
  color: #888;
  font-size: 0.875rem;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
}

.curl-example-terminal-content {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #00ff00;
  height: calc(100% - 4rem); /* Fixed height minus header and margins */
  overflow-y: auto; /* Allow scrolling if content is too long */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  box-sizing: border-box;
  padding-right: 0.5rem; /* Space for scrollbar */
  white-space: pre-wrap; /* Preserve whitespace but allow wrapping */
  word-wrap: break-word; /* Force long words to wrap */
  overflow-wrap: break-word; /* Modern property for word wrapping */
}

.curl-example-prompt {
  color: #00ff00;
}

.curl-example-command {
  color: #ffffff;
}

.curl-example-flag {
  color: #ffbd2e;
}

.curl-example-string {
  color: #ff6b6b;
}

.curl-example-response {
  color: #4ecdc4;
  margin-top: 0.5rem;
}

.curl-example-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #00ff00;
  animation: curl-blink 1s infinite;
  animation-fill-mode: both;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

@keyframes curl-blink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .curl-example-terminal {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 350px; /* Fixed height for mobile */
    min-height: 350px;
  }

  .curl-example-terminal-content {
    font-size: 0.65rem;
    height: calc(100% - 4rem);
  }
}

.curl-example-chevron-icon {
  width: 1rem;
  height: 1rem;
}

/* Curl examples section two */
.curl-example-section-two {
  background: #ffffff;
}

.curl-example-content-wrapper-two {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 900px) {
  .curl-example-content-wrapper-two {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.curl-example-box-content-two {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  max-width: 50%;
}

@media (max-width: 900px) {
  .curl-example-box-content-two {
    width: 100%;
    max-width: 100%;
  }
}

.curl-example-text-content-two {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 901px) {
  .curl-example-text-content-two {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .curl-example-text-content-two {
    width: 100%;
    text-align: center;
  }
}

.curl-example-text-container-two {
  max-width: 480px;
  padding-right: 5rem;
}

@media (max-width: 900px) {
  .curl-example-text-container-two {
    padding-right: 0;
    margin: 0 auto;
  }
}

.curl-example-terminal-two {
  width: 36rem;
  max-width: 36rem;
  min-width: 36rem;
  height: 400px; /* Fixed height */
  min-height: 400px; /* Ensure minimum height */
  background: #1a1a1a;
  border-radius: 1rem;
  border: 1px solid #333;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
    0 4px 6px -2px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  position: relative;
  overflow: hidden; /* Prevent container from growing */
  box-sizing: border-box; /* Include padding in height calculation */
}

.curl-example-terminal-header-two {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #333;
  height: 2rem; /* Fixed header height */
  flex-shrink: 0; /* Don't shrink header */
}

.curl-example-terminal-dots-two {
  display: flex;
  gap: 0.5rem;
}

.curl-example-terminal-dot-two {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.curl-example-terminal-dot-two.red {
  background: #ff5f56;
}

.curl-example-terminal-dot-two.yellow {
  background: #ffbd2e;
}

.curl-example-terminal-dot-two.green {
  background: #27ca3f;
}

.curl-example-terminal-title-two {
  margin-left: 1rem;
  color: #888;
  font-size: 0.875rem;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
}

.curl-example-terminal-content-two {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #00ff00;
  height: calc(100% - 4rem); /* Fixed height minus header and margins */
  overflow-y: auto; /* Allow scrolling if content is too long */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  box-sizing: border-box;
  padding-right: 0.5rem; /* Space for scrollbar */
  white-space: pre-wrap; /* Preserve whitespace but allow wrapping */
  word-wrap: break-word; /* Force long words to wrap */
  overflow-wrap: break-word; /* Modern property for word wrapping */
}

.curl-example-prompt-two {
  color: #00ff00;
}

.curl-example-command-two {
  color: #ffffff;
}

.curl-example-flag-two {
  color: #ffbd2e;
}

.curl-example-string-two {
  color: #ff6b6b;
}

.curl-example-response-two {
  color: #4ecdc4;
  margin-top: 0.5rem;
}

.curl-example-cursor-two {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #00ff00;
  animation: curl-blink-two 1s infinite;
  animation-fill-mode: both;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

@keyframes curl-blink-two {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .curl-example-terminal-two {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 350px; /* Fixed height for mobile */
    min-height: 350px;
  }

  .curl-example-terminal-content-two {
    font-size: 0.65rem;
    height: calc(100% - 4rem);
  }
}

.curl-example-chevron-icon-two {
  width: 1rem;
  height: 1rem;
}

/* Custom scrollbar for terminal content */
.curl-example-terminal-content::-webkit-scrollbar,
.curl-example-terminal-content-two::-webkit-scrollbar {
  width: 6px;
}

.curl-example-terminal-content::-webkit-scrollbar-track,
.curl-example-terminal-content-two::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 3px;
}

.curl-example-terminal-content::-webkit-scrollbar-thumb,
.curl-example-terminal-content-two::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 3px;
}

.curl-example-terminal-content::-webkit-scrollbar-thumb:hover,
.curl-example-terminal-content-two::-webkit-scrollbar-thumb:hover {
  background: #777;
}

/* Our areas */
.our-areas-container {
  display: flex;
  gap: 24px;
  width: 100%;
}

.area-box {
  flex: 1;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 24px;
}

.area-box .list-icon-container {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.area-box .list-icon-container svg {
  width: 48px;
  height: 48px;
}

.area-box svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.area-box h3 {
  margin-bottom: 16px;
}

.area-box p {
  margin: 0;
  line-height: 1.5;
  color: var(--text-gray);
  font-weight: 100;
}

@media (max-width: 970px) {
  .our-areas-container {
    flex-direction: column;
  }
}

/* Search as you type */
.search-asyoutype-container {
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 15px;
  border-radius: 12px;
  background-color: white;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.search-asyoutype-container input[type="text"] {
  width: 85%;
  padding: 15px 10px 15px 40px;
  border: none;
  border-radius: 3px;
  font-size: 1.2em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px 16px;
}

.search-asyoutype-container input[type="text"]:focus {
  outline: none;
  box-shadow: none;
}

.search-badge {
  margin-left: 10px;
  background-color: #edf1f3;
  color: var(--text-gray);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9em;
  white-space: nowrap;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.pulsating-dot {
  width: 8px;
  height: 8px;
  background-color: #4caf50;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.5s infinite ease-in-out;
  vertical-align: middle;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.search-asyoutype-container .results {
  max-height: 300px;
  overflow-y: auto;
  padding: 0;
  background-color: white;
  text-align: left !important;
}

.search-wrapper-container {
  background-color: #edf1f3;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.search-wrapper-container p {
  margin-bottom: 20px;
  color: var(--text-gray);
  font-size: 1rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .search-wrapper-container {
    text-align: center;
  }

  .search-wrapper-container p {
    max-width: 600px;
    font-size: 1.1rem;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .search-input-wrapper {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-top: 30px;
  }

  .search-badge {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-bottom: 0;
    z-index: 1;
  }

  .search-asyoutype-container input[type="text"] {
    width: 100%;
    box-sizing: border-box;
  }
}

.placeholder-result {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 8px;
  height: 100px;
}

.badge-text {
  transform: translateY(1px);
}

/* Search as you type */
.company-result {
  background: white;
  border: none;
  border-left: 3px solid #e5e7eb;
  margin-bottom: 1px;
  padding: 16px 20px;
  transition: all 0.15s ease;
  cursor: pointer;
  text-align: left !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.company-result * {
  text-align: left !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.company-result:hover {
  border-left-color: var(--primary-color);
  background-color: #f9fafb;
}

.company-result:last-child {
  margin-bottom: 0;
}

.company-name {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--primary-color) !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.2 !important;
  padding: 0 !important;
}

.company-description {
  font-size: 0.75rem !important;
  color: var(--text-gray) !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.3 !important;
  padding: 0 !important;
}

.company-metrics {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  text-align: left !important;
  width: 100% !important;
  flex-wrap: wrap !important;
}

.metric-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  text-align: left !important;
  flex: 1 !important;
  min-width: 100px !important;
}

.metric-label {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 500;
}

.metric-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.metric-value.positive {
  color: #059669;
}

.metric-value.negative {
  color: #dc2626;
}

@media (max-width: 768px) {
  .company-result {
    padding: 12px 16px;
  }

  .company-name {
    font-size: 0.95rem;
    margin-bottom: 3px;
  }

  .company-description {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .company-metrics {
    gap: 12px !important;
    flex-direction: row !important;
  }

  .metric-item {
    min-width: 80px !important;
  }

  .metric-label {
    font-size: 0.65rem;
  }

  .metric-value {
    font-size: 0.8rem;
  }
}

/* Subscription Section */
.subscription-container {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 970px) {
  .subscription-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.subscription-box {
  flex: 1;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.subscription-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.subscription-box h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.subscription-box .price-note {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-weight: 300;
}

.subscription-box > p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.subscription-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.subscription-box ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.subscription-box .list-icon-container {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.subscription-box .list-icon-container img {
  width: 16px;
  height: 16px;
}

.subscription-box .plus-item {
  font-weight: 500;
  color: var(--primary-color);
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.subscription-box .plus-item .list-icon-container img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(1000%)
    hue-rotate(200deg);
}

.subscription-box button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

@media (max-width: 768px) {
  .subscription-box {
    padding: 1.5rem;
  }

  .subscription-box h2 {
    font-size: 1.5rem;
  }

  .subscription-box ul li {
    font-size: 0.9rem;
  }
}

/* Pricing Comparison  */
.pricing-comparison-container {
  padding: 40px 0;
  overflow-x: auto;
  position: relative;
}

@media (max-width: 970px) {
  .pricing-comparison-container {
    overflow: visible !important;
    padding: 0;
    margin: 0;
  }
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  border: none;
}

.pricing-table th,
.pricing-table td {
  padding: 0;
  vertical-align: middle;
}

.pricing-table td:first-child {
  font-weight: 600;
  color: #1a1a1a;
  padding: 20px;
  border-bottom: 1px solid #f3f4f6;
}

.pricing-table tbody tr:first-child td {
  border-top: 1px solid #e2e8f0;
}

.pricing-table .spacer {
  width: 20px;
  border-bottom: 1px solid #f3f4f6;
}

.plan-header {
  padding: 0;
}

.plan-header-content {
  background: rgba(246, 246, 247, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  border-radius: 12px 12px 0 0;
  padding: 32px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  width: 200px;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.plan-subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.plan-cell {
  background: rgba(246, 246, 247, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  padding: 20px;
  text-align: center;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  width: 200px;
}

.last-row .plan-cell {
  border-bottom: none;
}

.plan-footer {
  background: rgba(246, 246, 247, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0 0 12px 12px;
  height: 32px;
  width: 200px;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.info-icon:hover {
  color: #374151;
}

.info-icon img {
  opacity: 0.7;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
}

.check-icon img {
  color: #10b981;
  filter: brightness(0) saturate(100%) invert(54%) sepia(92%) saturate(1015%)
    hue-rotate(128deg) brightness(96%) contrast(86%);
}

.dash-icon {
  color: #9ca3af;
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing-table tbody tr:hover td:first-child {
  background: #e0f2fe;
  color: #0f172a;
  font-weight: 600;
}

.pricing-table tbody tr:hover .plan-cell {
  background: #e0f2fe;
  color: #0f172a;
}

.pricing-table tbody tr:hover .spacer {
  background: #e0f2fe;
}

.pricing-table tfoot .spacer {
  border-bottom: none;
}

.pricing-table tfoot td:first-child {
  border-bottom: none;
}

/* Pricing comparison mobile */
.mobile-plan-explorer {
  display: none;
  overflow: visible !important;
  max-width: 100%;
}

@media (max-width: 970px) {
  .pricing-comparison-container {
    margin: 0;
    padding: 0;
    overflow: visible !important;
  }

  .pricing-table {
    display: none;
  }

  .mobile-plan-explorer {
    display: block;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
  }

  /* Plan Tabs */
  .plan-tabs {
    display: flex;
    background: #f8fafc;
    border-radius: 16px;
    padding: 6px;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
  }

  .plan-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border: none;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  }

  .plan-tab.active {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
  }

  .plan-tab .tab-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 2px;
  }

  .plan-tab .tab-price {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
  }

  .plan-tab.active .tab-name {
    color: #0f172a;
  }

  .plan-tab.active .tab-price {
    color: #3b82f6;
  }

  /* Plan Info Display */
  .mobile-plan-info {
    margin-bottom: 2rem;
  }

  .plan-display {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1e293b;
  }

  .plan-price {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .plan-cta {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 300;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }

  .plan-cta.btn-primary {
    background-color: black;
    color: white;
  }

  .plan-cta.btn-primary:hover {
    background-color: rgb(60, 60, 60);
  }

  .plan-cta.btn-outline {
    background-color: white;
    color: black;
    border: 1px solid var(--border-color);
  }

  .plan-cta.btn-outline:hover {
    background-color: rgb(245, 245, 245);
  }

  .feature-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
  }

  .feature-category {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .feature-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }

  .category-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
  }

  .category-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
  }

  .feature-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    width: 100%;
  }

  .feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f8fafc;
    transition: all 0.2s ease;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
  }

  .feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .feature-item:hover {
    background: #f8fafc;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 12px;
  }

  .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
    word-wrap: break-word;
    word-break: break-word;
  }

  .feature-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
  }

  .feature-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
    line-height: 1.3;
  }

  .feature-status {
    font-weight: 600;
    font-size: 1rem;
    margin-left: 1rem;
    min-width: 24px;
    text-align: center;
  }

  .feature-status.included {
    color: #10b981;
  }

  .feature-status.not-included {
    color: #94a3b8;
    font-size: 1.2rem;
  }

  .feature-status.paid {
    background: #3b82f6;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: auto;
  }

  .mobile-plan-footer {
    margin-top: 2rem;
    text-align: center;
  }

  .more-features p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  .more-features .btn-outline {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .feature-category {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
  }

  .feature-category:nth-child(1) {
    animation-delay: 0.1s;
  }
  .feature-category:nth-child(2) {
    animation-delay: 0.2s;
  }
  .feature-category:nth-child(3) {
    animation-delay: 0.3s;
  }
  .feature-category:nth-child(4) {
    animation-delay: 0.4s;
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .plan-display {
    transition: all 0.4s ease;
  }

  .feature-item {
    transition: all 0.3s ease;
  }

  .feature-status {
    transition: all 0.3s ease;
  }
}

@media (max-width: 768px) {
  .pricing-comparison-container {
    margin: 0;
    padding: 0;
  }

  .plan-tabs {
    margin-bottom: 1.5rem;
  }

  .plan-tab {
    padding: 10px 6px;
  }

  .plan-tab .tab-name {
    font-size: 0.9rem;
  }

  .plan-tab .tab-price {
    font-size: 0.75rem;
  }

  .plan-display {
    padding: 1.5rem 1rem;
  }

  .plan-name {
    font-size: 1.5rem;
  }

  .feature-category {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .category-header h4 {
    font-size: 1rem;
  }

  .feature-name {
    font-size: 0.9rem;
  }

  .feature-desc {
    font-size: 0.75rem;
  }
}

/* Kontroll av leverantörsbetalningar */

.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.warning-card {
  border-left: 4px solid var(--primary-color);
}

.unique-link {
  margin-top: 1rem;
}

.unique-link label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.link-container {
  display: flex;
  gap: 0.5rem;
}

.link-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.9rem;
  background-color: #f9f9f9;
}

.copy-btn {
  white-space: nowrap;
}

.upload-section {
  margin: 2rem 0;
}

.upload-container {
  background: white;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-medium);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.upload-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-medium);
  z-index: 10;
}

.upload-loading.active {
  display: flex;
}

.loading-content {
  text-align: center;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loading-text {
  color: var(--primary-color);
  font-weight: 500;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.results-section {
  margin-top: 2rem;
}

.results-header {
  margin-bottom: 1rem;
}

.results-header h3 {
  color: var(--primary-color);
  margin: 0;
}

.table-container {
  background: white;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  background-color: #f8f9fa;
  color: var(--primary-color);
  font-weight: 500;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border-color);
}

.data-table th:last-child {
  width: 150px;
  min-width: 150px;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.data-table tbody tr:hover {
  background-color: #f8f9fa;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.action-buttons {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.btn-primary.danger {
  background-color: #cf2020;
}

.btn-primary.danger:hover {
  background-color: #b01c1c;
}

.page-header.details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: left;
}

.breadcrumb-nav {
  margin-bottom: 0.5rem;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--primary-color);
}

.breadcrumb-arrow {
  font-size: 1.2em;
}

.header-left h1 {
  margin: 0 0 0.5rem 0;
  font-weight: 400;
}

.header-left p {
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}

.grid-section {
  margin-top: 20px;
  height: calc(100vh - 250px);
  min-height: 600px;
}

.grid-container {
  height: 100%;
  width: 100%;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

#myGrid {
  width: 100%;
  height: 100%;
}

/* AG Grid Styling */

#myGrid .ag-row-level-1 {
  background-color: #fefefe;
}

#myGrid .ag-group-expanded .ag-icon {
  color: var(--primary-color);
}

#myGrid .ag-body-horizontal-scroll-viewport::-webkit-scrollbar,
#myGrid .ag-body-vertical-scroll-viewport::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

#myGrid .ag-body-horizontal-scroll-viewport::-webkit-scrollbar-track,
#myGrid .ag-body-vertical-scroll-viewport::-webkit-scrollbar-track {
  background: #f1f5f9;
}

#myGrid .ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb,
#myGrid .ag-body-vertical-scroll-viewport::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

#myGrid .ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb:hover,
#myGrid .ag-body-vertical-scroll-viewport::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.badge {
  padding: 5px 5px 5px 5px;
  border-radius: 5px;
}

.negative {
  background-color: #cf2020;
  color: #ffffff;
}

.warning {
  background-color: #ffbb10;
  color: #000000;
}

.positive {
  background-color: #42b74a;
  color: #000000;
}

.details-page-container {
  margin-left: 0px !important;
  margin-right: 0px !important;
  margin-bottom: 0px !important;
  width: 100vw !important;
  max-width: 100% !important;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .info-section {
    grid-template-columns: 1fr;
  }

  .link-container {
    flex-direction: column;
  }

  .action-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-header.details-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-left {
    width: 100%;
  }

  .back-button {
    width: 100%;
    justify-content: center;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* Signup page */
.signup-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px 20px;
  background: transparent;
}

.signup-form-step,
.signup-form-group {
  background-color: transparent !important;
}

.signup-form {
  background: #ffffff !important;
}

.signup-header {
  margin-bottom: 60px;
  text-align: center;
}

.signup-header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 768px) {
  .signup-header h1 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
  }
}

@media (min-width: 1024px) {
  .signup-header h1 {
    font-size: 4.5rem;
  }
}

.signup-header p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
}

.signup-header p:last-child {
  margin-bottom: 0;
}

.signup-stats {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.875rem;
  color: #999;
}

.signup-product-selection {
  padding: 0;
  margin: 0;
}

.signup-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.signup-benefit-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.signup-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.signup-benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.signup-benefit-card:hover .signup-benefit-icon {
  color: var(--primary-color);
  transform: scale(1.1);
}

.signup-benefit-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.signup-benefit-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.4;
}

.signup-choice-section {
  margin-bottom: 60px;
}

.signup-choice-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 300;
}

.signup-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.signup-choice-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.signup-choice-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.signup-choice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.signup-choice-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 500;
}

.signup-choice-badge {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.signup-choice-badge-premium {
  background: #f3e5f5;
  color: #7b1fa2;
}

.signup-choice-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.signup-choice-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.signup-choice-features li {
  padding: 8px 0;
  color: var(--text-gray);
  position: relative;
  padding-left: 20px;
}

.signup-choice-features li:before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.signup-choice-btn {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
}

.signup-sales-contact {
  background: white;
  border-radius: var(--radius-medium);
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.signup-sales-header {
  text-align: center;
  margin-bottom: 40px;
}

.signup-sales-header h2 {
  margin: 0 0 16px 0;
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 300;
}

.signup-sales-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin: 0;
}

.signup-sales-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.signup-sales-option {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  background: #fafafa;
}

.signup-sales-option h3 {
  margin: 0 0 16px 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.signup-sales-option p {
  color: var(--text-gray);
  margin: 0 0 16px 0;
}

.signup-sales-phone {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.signup-sales-hours {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.signup-back-to-choice {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.signup-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 20px;
  background: transparent !important;
}

.signup-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  background: transparent !important;
}

.signup-progress-step.active {
  opacity: 1;
  background: transparent !important;
}

.signup-progress-step.completed {
  opacity: 1;
  background: transparent !important;
}

.signup-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  color: var(--text-gray);
}

.signup-progress-step.active .signup-step-number {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.signup-progress-step.completed .signup-step-number {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.signup-step-label {
  font-size: 0.9rem;
  text-align: center;
}

.signup-progress-line {
  width: 60px;
  height: 2px;
  background-color: var(--border-color);
  margin: 0 20px;
}

.signup-form {
  background: #ffffff !important;
  padding: 40px;
  border-radius: var(--radius-medium);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  margin-top: 20px;
}

.signup-form-step {
  display: none;
  background: transparent !important;
}

.signup-form-step.active {
  display: block;
  background: transparent !important;
}

.signup-form-group {
  margin-bottom: 24px;
  background: transparent !important;
  position: relative;
}

.signup-form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
}

.signup-field-help {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 8px 0 0 0;
  line-height: 1.4;
}

.signup-company-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.signup-company-suggestion {
  padding: 16px 20px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
  position: relative;
}

.signup-company-suggestion:hover {
  background-color: #f8fafc;
  border-left: 3px solid var(--primary-color);
  padding-left: 17px;
}

.signup-company-suggestion:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

.signup-company-suggestion:first-child {
  border-top: 1px solid #f3f4f6;
}

.suggestion-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
  display: block;
  line-height: 1.3;
}

.suggestion-details {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suggestion-details span {
  display: inline-flex;
  align-items: center;
}

.suggestion-details span:not(:last-child):after {
  content: "•";
  margin-left: 8px;
  color: #cbd5e1;
}

.signup-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signup-radio-option {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.signup-radio-option:hover {
  background-color: #f9f9f9;
  border-color: var(--primary-color);
}

.signup-radio-option input[type="radio"] {
  margin-right: 12px;
  margin-top: 2px;
}

.signup-radio-label {
  font-weight: 500;
  color: var(--primary-color);
}

.signup-radio-description {
  display: block;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.signup-contact-sales-note {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 4px solid var(--primary-color);
}

.signup-contact-sales-note p {
  margin: 0 0 8px 0;
}

.signup-contact-sales-note p:last-child {
  margin-bottom: 0;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  background: #ffffff !important;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus,
.signup-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 16, 32, 0.1);
}

.signup-form-actions {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 32px;
  background: transparent !important;
}

.signup-form-actions button {
  min-width: 120px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
}

.signup-field-error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 4px;
  display: none;
}

.signup-field-error.show {
  display: block;
}

.signup-success {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: var(--radius-medium);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.signup-success-icon {
  width: 80px;
  height: 80px;
  background-color: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.signup-success h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.signup-success p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .signup-container {
    padding: 40px 10px 20px 10px;
  }

  .signup-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .signup-benefit-card {
    padding: 20px;
  }

  .signup-choice-section h2 {
    font-size: 1.6rem;
  }

  .signup-choices {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .signup-choice-card {
    padding: 24px;
  }

  .signup-sales-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .signup-sales-option {
    padding: 24px 16px;
  }

  .signup-form {
    padding: 24px;
  }

  .signup-progress-line {
    width: 40px;
    margin: 0 12px;
  }

  .signup-step-label {
    font-size: 0.8rem;
  }

  .signup-form-actions {
    flex-direction: column;
  }

  .signup-form-actions button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .signup-benefits {
    gap: 16px;
  }

  .signup-benefit-card {
    padding: 18px;
  }

  .signup-benefit-card h4 {
    font-size: 1rem;
  }

  .signup-benefit-card p {
    font-size: 0.85rem;
  }

  .signup-choice-card {
    padding: 20px;
  }

  .signup-choice-header h3 {
    font-size: 1.2rem;
  }
}

.signup-products-showcase {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.signup-product-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.signup-product-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-color);
}

.signup-product-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-product-icon i {
  width: 24px;
  height: 24px;
  color: #374151;
}

.signup-product-content {
  flex: 1;
  min-width: 0;
}

.signup-product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.signup-product-card p {
  color: #666;
  line-height: 1.4;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.signup-product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.signup-product-features li {
  padding: 4px 0;
  color: #4a4a4a;
  position: relative;
  padding-left: 18px;
  font-size: 0.8rem;
  line-height: 1.3;
}

.signup-product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 0.85rem;
}

.signup-product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f3f4f6;
  color: #4b5563;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.signup-stats-info {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
  padding: 16px 0;
}

@media (max-width: 767px) {
  .signup-products-showcase {
    flex-direction: column;
    gap: 12px;
  }

  .signup-product-card {
    padding: 16px;
  }

  .signup-product-icon {
    width: 28px;
    height: 28px;
  }

  .signup-product-icon i {
    width: 20px;
    height: 20px;
  }

  .signup-product-card h3 {
    font-size: 1rem;
  }

  .signup-product-card p {
    font-size: 0.8rem;
  }

  .signup-stats-info {
    font-size: 0.85rem;
    padding: 12px 0;
  }
}

.signup-product-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 2px solid #e5e5e5;
  justify-content: center;
}

.signup-product-tab {
  padding: 16px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.signup-product-tab strong {
  font-size: 1rem;
  display: block;
}

.signup-product-tab .tab-description {
  font-size: 0.75rem;
  font-weight: 400;
  color: #999;
  white-space: nowrap;
}

.signup-product-tab:hover {
  color: #1976d2;
}

.signup-product-tab:hover .tab-description {
  color: #666;
}

.signup-product-tab.active {
  color: #1976d2;
  border-bottom-color: #1976d2;
}

.signup-product-tab.active .tab-description {
  color: #666;
}

.signup-product-tab i {
  width: 20px;
  height: 20px;
}

.signup-plans-section {
  margin-bottom: 48px;
}

.signup-product-intro {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.signup-product-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.signup-product-intro p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.api-features,
.webapp-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.api-feature,
.webapp-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.api-feature .lucide-icon-inline,
.webapp-feature .lucide-icon-inline {
  width: 16px;
  height: 16px;
  color: #10b981;
}

.signup-plans-section h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.signup-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.signup-plan-card {
  position: relative;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.signup-plan-card:hover {
  border-color: #1976d2;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.signup-plan-enterprise {
  border-color: #1976d2;
  background: linear-gradient(to bottom, #f8fbff, #fff);
}

.signup-plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #1976d2;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.signup-plan-header {
  margin-bottom: 24px;
  text-align: center;
}

.signup-plan-header h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.signup-price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.signup-price-tag .price-from {
  font-size: 0.875rem;
  color: #666;
}

.signup-price-tag .price {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.signup-price-tag .period {
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap;
}

.signup-plan-description {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.signup-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.signup-plan-features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #4a4a4a;
  font-size: 0.875rem;
  line-height: 1.4;
}

.signup-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.signup-plan-select,
.signup-plan-contact {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-selected-plan {
  background: #f0f7ff;
  border: 1px solid #dbeafe;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  color: #1e40af;
}

.signup-sales-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.signup-sales-form h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.signup-sales-form > p {
  color: #666;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.signup-sales-info {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
}

.signup-sales-info h4 {
  margin-bottom: 20px;
  color: #1a1a1a;
}

.signup-sales-contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.signup-sales-contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
}

.signup-sales-contact-option i {
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1976d2;
  flex-shrink: 0;
}

.signup-sales-contact-option strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.signup-sales-contact-option span {
  font-size: 0.875rem;
  color: #666;
}

.signup-pricing-summary {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}

.signup-pricing-summary h4 {
  margin-bottom: 16px;
  color: #1f2937;
}

.signup-order-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #4b5563;
}

.signup-order-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #e5e7eb;
  font-weight: 600;
  color: #1f2937;
  font-size: 1.1rem;
}

.signup-plans-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.signup-plan-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.signup-plan-row:last-child {
  border-bottom: none;
}

.signup-plan-row:hover {
  background-color: #f8f9fa;
}

.signup-plan-featured {
  background-color: #f0f7ff;
  border: 2px solid #e0f2fe;
  margin: -2px;
  position: relative;
  z-index: 1;
}

.signup-plan-info h4 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #1a1a1a;
  font-weight: 600;
}

.signup-plan-summary {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.signup-plan-popular {
  display: inline-block;
  background: white;
  color: #2563eb;
  border: 1px solid #2563eb;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}

.signup-plan-popular .lucide-icon-inline {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-right: 4px;
  fill: #2563eb;
}

.signup-plan-highlights {
  display: flex;
  gap: 16px;
  padding: 0 24px;
}

.highlight-item {
  font-size: 0.875rem;
  color: #4a4a4a;
  position: relative;
  padding-left: 16px;
}

.highlight-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.signup-plan-price {
  text-align: right;
  padding: 0 24px;
}

.signup-plan-price .price-from {
  font-size: 0.75rem;
  color: #666;
  display: block;
}

.signup-plan-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.signup-plan-price .period {
  font-size: 0.875rem;
  color: #666;
}

.signup-plan-action {
  padding-left: 24px;
}

.btn-sm {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
}

.signup-plans-details {
  text-align: center;
  margin-top: 16px;
}

.signup-compare-link {
  color: #1976d2;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.signup-compare-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .signup-plan-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .signup-plan-highlights {
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
  }

  .highlight-item {
    font-size: 0.75rem;
    background: #f3f4f6;
    padding: 4px 8px 4px 20px;
    border-radius: 4px;
  }

  .signup-plan-price {
    text-align: left;
    padding: 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .signup-plan-price .price {
    font-size: 1.25rem;
  }

  .signup-plan-action {
    padding: 0;
  }

  .signup-plan-action button {
    width: 100%;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .signup-plan-row {
    grid-template-columns: 1.5fr auto auto auto;
    padding: 16px 20px;
  }

  .signup-plan-highlights {
    padding: 0 16px;
    gap: 12px;
  }

  .highlight-item {
    font-size: 0.8rem;
  }

  .signup-plan-price {
    padding: 0 16px;
  }

  .signup-plan-action {
    padding-left: 16px;
  }
}

@media (max-width: 1200px) {
  .signup-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .signup-product-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .signup-product-tab {
    padding: 12px 16px;
    font-size: 0.9rem;
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }

  .signup-product-tab .tab-description {
    font-size: 0.65rem;
  }

  .signup-plans-grid {
    grid-template-columns: 1fr;
  }

  .signup-product-intro h3 {
    font-size: 1.5rem;
  }

  .signup-product-intro p {
    font-size: 1rem;
  }

  .api-features,
  .webapp-features {
    gap: 16px;
  }

  .api-feature,
  .webapp-feature {
    font-size: 0.85rem;
  }

  .signup-sales-form {
    padding: 24px;
  }

  .signup-sales-contact-options {
    grid-template-columns: 1fr;
  }
}

/* Swish */
.swish-modal-container {
  padding: 20px;
}

.swish-modal-icon {
  text-align: center;
  margin-bottom: 20px;
}

.swish-modal-icon img {
  width: 48px;
  height: 48px;
  opacity: 0.7;
}

.swish-modal-title {
  text-align: center;
  margin: 0 0 20px 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-color);
}

.swish-modal-description {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 30px;
}

.swish-test-mode {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.swish-test-mode-title {
  margin: 0 0 10px 0;
  font-weight: 500;
}

.swish-test-mode-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.swish-test-mode-select {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.swish-status-container {
  text-align: center;
  padding: 40px 20px;
}

.swish-status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swish-status-icon.success {
  background: #4caf50;
}

.swish-status-icon.error {
  background: #f44336;
}

.swish-status-icon span {
  color: white;
  font-size: 32px;
}

.swish-status-title {
  margin: 0 0 10px 0;
  color: var(--primary-color);
}

.swish-status-message {
  color: var(--text-gray);
  margin: 0 0 30px 0;
}

.swish-waiting-container {
  text-align: center;
  padding: 40px 20px;
}

.swish-waiting-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.swish-waiting-icon img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.swish-waiting-title {
  margin: 0 0 10px 0;
  color: var(--primary-color);
}

.swish-waiting-phone {
  color: var(--text-gray);
  margin: 0 0 20px 0;
}

.swish-waiting-divider {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

.swish-waiting-status {
  font-size: 0.9rem;
  color: #999;
}

/* ========================================
   CUSTOM SECTIONS 3
   ======================================== */

/* ========================================
   Annual Reports Open Data (ar-open-)
   Prefix: ar-open-
   Beskrivning: Årsredovisningar under öppna data
   ======================================== */

/* Page Layout */
.ar-open-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.ar-open-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  height: fit-content;
  max-height: calc(100vh - var(--header-height) - 3rem);
  overflow-y: auto;
}

.ar-open-main-content {
  min-width: 0;
}

/* Filter Section */
.ar-open-filter-section {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
}

.ar-open-filter-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.ar-open-filter-group {
  margin-bottom: 2rem;
}

.ar-open-filter-group:last-child {
  margin-bottom: 0;
}

.ar-open-filter-group-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ar-open-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ar-open-filter-item {
  margin-bottom: 0.5rem;
}

.ar-open-filter-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.ar-open-filter-link:hover {
  background-color: #f5f5f5;
}

.ar-open-filter-item.active .ar-open-filter-link {
  background-color: var(--primary-color);
  color: white;
}

.ar-open-filter-name {
  font-size: 0.9375rem;
}

.ar-open-filter-count {
  font-weight: 600;
  font-size: 0.875rem;
  background: #f0f0f0;
  padding: 0.125rem 0.5rem;
  border-radius: 12px;
  min-width: 32px;
  text-align: center;
}

.ar-open-filter-item.active .ar-open-filter-count {
  background: rgba(255, 255, 255, 0.2);
}

.ar-open-filter-reset {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.ar-open-filter-reset-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.ar-open-filter-reset-link:hover {
  opacity: 0.7;
}

/* Results Cards */
.ar-open-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ar-open-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.ar-open-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ar-open-card-header {
  margin-bottom: 1rem;
}

.ar-open-company-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--primary-color);
}

.ar-open-company-info {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.ar-open-org-number {
  font-weight: 500;
  color: #333;
}

.ar-open-report-year {
  font-weight: 500;
}

.ar-open-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ar-open-detail-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.ar-open-detail-label {
  font-weight: 500;
  color: var(--text-gray);
  min-width: 80px;
}

.ar-open-detail-value {
  color: #333;
}

.ar-open-format-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #e5e7eb;
  color: #374151;
}

.ar-open-format-badge.ar-open-format-pdf {
  background-color: #fee2e2;
  color: #dc2626;
}

.ar-open-format-badge.ar-open-format-xbrl,
.ar-open-format-badge.ar-open-format-ixbrl {
  background-color: #dbeafe;
  color: #2563eb;
}

.ar-open-format-badge.ar-open-format-xhtml {
  background-color: #f3e8ff;
  color: #7c3aed;
}

.ar-open-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.ar-open-btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ar-open-btn-small svg {
  width: 16px;
  height: 16px;
}

/* Viewer Container */
.ar-open-viewer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.ar-open-breadcrumb {
  margin-bottom: 1rem;
}

.ar-open-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ar-open-breadcrumb a:hover {
  text-decoration: underline;
}

.ar-open-viewer-header {
  margin-bottom: 2rem;
}

.ar-open-viewer-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.ar-open-meta {
  display: flex;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-gray);
}

.ar-open-meta .ar-open-org-number {
  font-weight: 500;
  color: #333;
}

/* Tabs */
.ar-open-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.ar-open-tab {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text-gray);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: -2px;
}

.ar-open-tab:hover {
  color: var(--primary-color);
}

.ar-open-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  font-weight: 500;
}

.ar-open-tab svg {
  width: 16px;
  height: 16px;
}

/* Content Wrapper */
.ar-open-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

/* PDF Container */
.ar-open-pdf-container {
  flex: 1;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  overflow: hidden;
  min-height: 800px;
}

#adobe-dc-view {
  width: 100%;
  height: 800px;
}

/* Transcript Container */
.ar-open-transcript-container {
  flex: 1;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 2rem;
  max-height: 800px;
  overflow-y: auto;
}

.ar-open-transcript-header {
  margin-bottom: 1.5rem;
}

.ar-open-transcript-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.ar-open-transcript-content {
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}

.ar-open-transcript-content pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
}

/* HTML Container */
.ar-open-html-container {
  flex: 1;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  padding: 2rem;
  overflow-y: auto;
  max-height: 800px;
}

.ar-open-xhtml-content {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Missing Content */
.ar-open-missing {
  text-align: center;
  padding: 4rem 2rem;
}

.ar-open-missing-icon {
  margin-bottom: 1.5rem;
}

.ar-open-missing-icon svg {
  width: 64px;
  height: 64px;
  color: #d1d5db;
}

.ar-open-missing h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #374151;
}

/* Info Box */
.ar-open-info-box {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.ar-open-info-box-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ar-open-info-box-header h3 {
  font-size: 1rem;
  margin: 0;
}

.ar-open-info-box-content {
  padding: 1.5rem;
}

.ar-open-info-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.ar-open-info-row:last-child {
  margin-bottom: 0;
}

.ar-open-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.ar-open-info-value {
  font-size: 0.875rem;
  color: #333;
}

.ar-open-info-actions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .ar-open-content-wrapper {
    grid-template-columns: 1fr;
  }

  .ar-open-info-box {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .ar-open-page-layout {
    grid-template-columns: 1fr;
  }

  .ar-open-sidebar {
    position: static;
    max-height: none;
    margin-bottom: 2rem;
  }

  .ar-open-filter-section {
    position: relative;
  }

  .ar-open-filter-title {
    cursor: pointer;
    padding-right: 2rem;
    position: relative;
  }

  .ar-open-filter-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
  }

  .ar-open-filter-section.collapsed .ar-open-filter-title::after {
    transform: translateY(-50%) rotate(-90deg);
  }

  .ar-open-filter-section.collapsed .ar-open-filter-group,
  .ar-open-filter-section.collapsed .ar-open-filter-reset {
    display: none;
  }

  .ar-open-search-form {
    padding: 1rem;
  }

  .ar-open-search-controls {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ar-open-card {
    padding: 1rem;
  }

  .ar-open-company-name {
    font-size: 1.125rem;
  }

  .ar-open-actions {
    flex-wrap: wrap;
  }

  .ar-open-viewer-container {
    padding: 1rem;
  }

  .ar-open-viewer-header h1 {
    font-size: 1.5rem;
  }

  .ar-open-tabs {
    flex-wrap: wrap;
  }

  .ar-open-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  #adobe-dc-view {
    height: 600px;
  }

  .ar-open-pdf-container,
  .ar-open-transcript-container,
  .ar-open-html-container {
    max-height: 600px;
  }
}

/* ========================================
   Prefix: kontroll-ar-
   Beskrivning: Kontroll av årsredovisningar
   ======================================== */

.kontroll-ar-table {
  table-layout: auto;
}

.kontroll-ar-table td {
  text-overflow: ellipsis;
}

.kontroll-ar-details-header h2 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.kontroll-ar-xbrl-viewer-container {
  width: 100%;
  margin-top: 1rem;
}

.kontroll-ar-xbrl-iframe {
  width: 100%;
  height: 900px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  background: white;
}

.kontroll-ar-xbrl-header {
  margin-bottom: 1rem;
}

.kontroll-ar-xbrl-header h3 {
  margin-bottom: 0.5rem;
}

.kontroll-ar-xbrl-header p {
  margin-bottom: 1rem;
}

.kontroll-ar-btn-secondary {
  background: white;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.kontroll-ar-btn-secondary:hover {
  background: #f5f5f5;
}

.kontroll-ar-toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.kontroll-ar-toggle-icon.rotated {
  transform: rotate(180deg);
}

/* ========================================
   Öppna Data Tables (oppna-data-)
   Prefix: oppna-data-
   Beskrivning: Tabeller för öppna data sidan
   ======================================== */

.oppna-data-table-container {
  padding: 40px 0;
  overflow-x: auto;
  position: relative;
}

.oppna-data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  border: none;
}

.oppna-data-table th,
.oppna-data-table td {
  padding: 0;
  vertical-align: middle;
}

.oppna-data-table td:first-child {
  font-weight: 600;
  color: #1a1a1a;
  padding: 20px;
  border-bottom: 1px solid #f3f4f6;
}

.oppna-data-table tbody tr:first-child td {
  border-top: 1px solid #e2e8f0;
}

.oppna-data-table .spacer {
  width: 20px;
  border-bottom: 1px solid #f3f4f6;
}

.oppna-data-table .plan-header {
  padding: 0;
}

.oppna-data-table .plan-header-content {
  background: rgba(246, 246, 247, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  border-radius: 12px 12px 0 0;
  padding: 32px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.oppna-data-table .plan-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.oppna-data-table .plan-cell {
  text-align: center;
  background: white;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #f3f4f6;
  padding: 20px;
}

.oppna-data-table .plan-cell-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.oppna-data-table .cc-zero-icon {
  width: 120px;
  height: auto;
}

.oppna-data-table .plan-footer {
  background: rgba(246, 246, 247, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0 0 12px 12px;
  height: 16px;
}

.oppna-data-mobile-explorer {
  display: none;
  overflow: visible !important;
  max-width: 100%;
}

.oppna-data-access-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f3f4f6 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  gap: 2rem;
}

.oppna-data-access-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
}

.oppna-data-access-item i {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.oppna-data-access-divider {
  width: 1px;
  height: 40px;
  background: #e5e7eb;
}

.oppna-data-badge {
  background: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.oppna-data-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.oppna-data-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oppna-data-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.oppna-data-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #fafbfc;
  border-bottom: 1px solid #f3f4f6;
}

.oppna-data-card-header h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  flex: 1;
  padding-right: 1rem;
}

.oppna-data-license-badge {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

.oppna-data-card-content {
  padding: 1.5rem;
}

.oppna-data-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oppna-data-feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.oppna-data-feature-list li:before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: #9ca3af;
}

.oppna-data-feature-list li.green-text {
  color: #10b981;
  font-weight: 500;
}

.oppna-data-feature-list li.green-text:before {
  color: #10b981;
}

.oppna-data-mobile-cta {
  margin-top: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.oppna-data-cta-text {
  margin-top: 1rem;
  margin-bottom: 0;
  color: #6b7280;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

@media (max-width: 970px) {
  .oppna-data-table-container {
    overflow: visible !important;
    padding: 0;
    margin: 0;
  }

  .oppna-data-table {
    display: none;
  }

  .oppna-data-mobile-explorer {
    display: block;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .oppna-data-access-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .oppna-data-access-divider {
    width: 60px;
    height: 1px;
  }

  .oppna-data-access-item {
    font-size: 0.9375rem;
  }

  .oppna-data-card-header {
    padding: 1rem 1.25rem;
  }

  .oppna-data-card-header h4 {
    font-size: 1rem;
  }

  .oppna-data-license-badge {
    width: 80px;
  }

  .oppna-data-card-content {
    padding: 1.25rem;
  }

  .oppna-data-feature-list li {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
  }

  .oppna-data-mobile-cta {
    padding: 1.5rem;
  }
}

/* ========================================
   Checklista Tables (checklista-)
   Prefix: checklista-
   Beskrivning: Tabeller för checklista sidan
   ======================================== */

/* Container */
.checklista-table-container {
  padding: 40px 0;
  overflow-x: auto;
  position: relative;
}

/* Desktop Table */
.checklista-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  border: none;
}

.checklista-table th,
.checklista-table td {
  padding: 0;
  vertical-align: middle;
}

.checklista-table td:first-child {
  font-weight: 400;
  color: #1a1a1a;
  padding: 20px;
  border-bottom: 1px solid #f3f4f6;
}

.checklista-table tbody tr:first-child td {
  border-top: 1px solid #e2e8f0;
}

.checklista-table .plan-header {
  padding: 0;
}

.checklista-table .plan-header-content {
  background: rgba(246, 246, 247, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  border-radius: 12px 12px 0 0;
  padding: 32px 24px 24px;
  text-align: center;
}

.checklista-table .plan-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
}

.checklista-table .plan-cell {
  text-align: center;
  background: white;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #f3f4f6;
  padding: 20px;
}

.checklista-table .plan-footer {
  background: rgba(246, 246, 247, 0.4);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0 0 12px 12px;
  height: 16px;
}

.checklista-table tbody tr td[colspan="2"] {
  background: #f9fafb;
  font-weight: 700;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.checklista-mobile-view {
  display: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

.checklista-accordion {
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.checklista-category {
  border-bottom: 1px solid #e5e7eb;
}

.checklista-category:last-child {
  border-bottom: none;
}

.checklista-category-header {
  padding: 1.25rem;
  background: #f9fafb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.checklista-category-header:hover {
  background: #f3f4f6;
}

.checklista-category-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
}

.checklista-category-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.checklista-category.active .checklista-category-icon {
  transform: rotate(180deg);
}

.checklista-category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.checklista-category.active .checklista-category-content {
  max-height: 2000px;
}

.checklista-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background-color 0.2s ease;
}

.checklista-item:hover {
  background-color: #fafbfc;
}

.checklista-item:last-child {
  border-bottom: none;
}

.checklista-item-text {
  flex: 1;
  padding-right: 1rem;
  color: #374151;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.checklista-item-status {
  flex-shrink: 0;
  background: #f0fdf4;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #86efac;
}

.checklista-item-status .check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklista-item-status .check-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(93%) saturate(456%)
    hue-rotate(86deg) brightness(93%) contrast(85%);
}

@media (max-width: 970px) {
  .checklista-table-container {
    overflow: visible !important;
    padding: 0;
    margin: 0;
    background: transparent;
  }

  .checklista-table {
    display: none;
  }

  .checklista-mobile-view {
    display: block;
    background: transparent !important;
    padding: 1rem 0;
  }
}

@media (max-width: 768px) {
  .checklista-category-header {
    padding: 1rem;
  }

  .checklista-category-title {
    font-size: 1rem;
  }

  .checklista-item {
    padding: 1rem;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .checklista-item-text {
    padding-right: 0;
    font-size: 0.875rem;
  }

  .checklista-item-status {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .checklista-item-status .check-icon img {
    width: 14px;
    height: 14px;
  }
}

/* ========================================
   Search Landing Pages (search-landing-)
   Prefix: search-landing-
   Beskrivning: Gemensamma stilar för alla söklandningssidor (fastigheter, företag, etc.)
   Används av: Properties/Index.cshtml, Companies/Index.cshtml
   ======================================== */

.search-landing-search-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.search-landing-search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.search-landing-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 16, 32, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.search-landing-search-input:hover {
  border-color: #999;
}

.search-landing-page-hero {
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.search-landing-page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Kompakt hero-design för söklandningssidor */
.search-landing-page-hero-compact {
  text-align: center;
  padding: 1.5rem 0 1rem;
  margin-bottom: 0.5rem;
}

.search-landing-page-hero-compact h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.search-landing-hero-search {
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.search-landing-mini-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0.5rem 0 1rem;
  flex-wrap: wrap;
}

.search-landing-mini-benefits span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.search-landing-mini-benefits svg {
  color: #10b981;
  flex-shrink: 0;
}

.search-landing-hero-subtitle {
  font-size: 2rem;
  color: #2c3e50;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.search-landing-hero-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.7;
}

.search-landing-benefits-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}

.search-landing-benefit-item {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-medium);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-landing-benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-landing-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.search-landing-benefit-icon svg {
  width: 100%;
  height: 100%;
}

.search-landing-benefit-item h3 {
  font-size: 0.9375rem;
  color: var(--primary-color);
  margin-bottom: 0.375rem;
  font-weight: 600;
}

.search-landing-benefit-item p {
  font-size: 0.8125rem;
  color: var(--text-gray);
  line-height: 1.4;
  margin: 0;
}

.search-landing-premium-hint {
  color: #10b981;
  font-weight: 500;
  font-size: 0.75rem;
  display: block;
  margin-top: 0.25rem;
}

.search-landing-search-section {
  text-align: center;
  padding: 1.5rem 0;
  background-color: #f8f9fa;
  border-radius: var(--radius-medium);
  margin: 2rem auto;
  max-width: 1200px;
}

.search-landing-search-section h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.search-landing-search-hint {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-style: italic;
}

.search-landing-table-container {
  max-width: 1200px;
  margin: 1rem auto 2rem;
  padding: 0 1rem;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.search-landing-data-table {
  width: 100%;
  background: white;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-landing-data-table thead {
  background-color: #f8f9fa;
}

.search-landing-data-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border-color);
}

.search-landing-data-table tbody tr {
  transition: background-color 0.2s ease;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}

.search-landing-data-table tbody tr:hover {
  background-color: #f8f9fa;
}

.search-landing-data-table td {
  padding: 1rem 1.5rem;
  color: #374151;
}

.search-landing-data-table a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.search-landing-data-table a:hover {
  text-decoration: underline;
  color: #002040;
}

/* Specifik kolumnbredd för företagssökning */
.search-landing-data-table th:first-child,
.search-landing-data-table td:first-child {
  width: 140px;
  white-space: nowrap;
}

html {
  scroll-behavior: smooth;
}

.property-breadcrumb {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}

.property-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-medium);
  transition: all 0.3s ease;
}

.property-breadcrumb a:hover {
  background-color: rgba(0, 0, 0, 0.06);
  transform: translateX(-2px);
  color: var(--primary-color);
}

.property-breadcrumb a svg {
  transition: transform 0.3s ease;
}

.property-breadcrumb a:hover svg {
  transform: translateX(-2px);
}

.property-details-hero {
  background: transparent;
  padding: 2.5rem 0;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.property-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.property-details-hero h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.property-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
  font-size: 1.125rem;
}

.property-address svg {
  color: var(--text-gray);
}

.property-quick-stats {
  max-width: 1200px;
  margin: -3rem auto 2rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.property-stat-card {
  background: white;
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
}

.property-info-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.property-info-card {
  background: white;
  border-radius: var(--radius-medium);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.property-info-card h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.property-info-card p {
  line-height: 1.8;
  color: var(--text-gray);
}

.property-promo-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  border-radius: var(--radius-medium);
  padding: 2rem;
  text-align: center;
}

.promo-icon {
  width: 48px;
  height: 48px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.property-promo-card h4 {
  font-size: 1.125rem;
  color: #047857;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.property-promo-card p {
  font-size: 0.9375rem;
  color: #065f46;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.promo-link {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
}

.promo-link:hover {
  gap: 0.5rem;
  text-decoration: underline;
}

.property-map-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.map-header h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

.map-controls {
  display: flex;
  gap: 0.5rem;
}

.map-control-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-gray);
}

.map-control-btn:hover {
  background: #f3f4f6;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.property-map-container {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
}

.property-details-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.property-details-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.property-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.property-detail-card {
  background: white;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

.property-detail-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.property-detail-card h3 {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  margin: 0;
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}

.property-details-table {
  width: 100%;
  border-collapse: collapse;
}

.property-details-table td:first-child {
  font-weight: 500;
  color: var(--text-gray);
  width: 40%;
  font-size: 0.875rem;
}

.property-details-table td {
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9375rem;
}

.property-details-table tr:last-child td {
  border-bottom: none;
}

.detail-tag {
  display: inline-block;
  background: #e5e7eb;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  margin: 0.125rem;
}

.coord-value {
  font-family: monospace;
  font-size: 0.9375rem;
  color: var(--primary-color);
}

.text-muted {
  color: #9ca3af;
  font-size: 0.8125rem;
}

.property-subscription-section {
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
  padding: 5rem 0;
  margin-top: 4rem;
}

.subscription-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.subscription-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.subscription-header p {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.property-subscription-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.property-subscription-box {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  position: relative;
  transition: all 0.3s ease;
}

.property-subscription-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  border-color: #d1d5db;
}

.property-subscription-box.featured {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px -8px rgba(0, 16, 32, 0.15);
}

.property-subscription-box.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(0, 16, 32, 0.25);
}

.subscription-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-gray);
  border: 1px solid #e5e7eb;
  border-radius: 50px;
}

.property-subscription-box.featured .subscription-label {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.property-subscription-box h3 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.subscription-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-currency {
  font-size: 1.25rem;
  color: var(--text-gray);
  font-weight: 400;
}

.subscription-description {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 3rem;
}

.subscription-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.subscription-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.subscription-features li:last-child {
  border-bottom: none;
}

.subscription-features svg {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.subscription-features strong {
  color: var(--primary-color);
}

.property-subscription-box .btn-subscription {
  width: 100%;
  padding: 0.875rem 1rem !important;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block !important;
  text-align: center;
  cursor: pointer;
  margin: 0;
  box-sizing: border-box;
}

.property-subscription-box .btn-subscription.btn-outline {
  background: white !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
}

.property-subscription-box .btn-subscription.btn-outline:hover {
  background: var(--primary-color) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 16, 32, 0.2);
}

.property-subscription-box .btn-subscription.btn-primary {
  background: var(--primary-color) !important;
  color: white !important;
  border: 2px solid var(--primary-color) !important;
}

.property-subscription-box .btn-subscription.btn-primary:hover {
  background: #002040 !important;
  border-color: #002040 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 16, 32, 0.3);
}

.search-landing-trust-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 1rem;
  text-align: center;
}

.search-landing-trust-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-weight: 600;
}

.search-landing-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.search-landing-trust-item {
  text-align: left;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: var(--radius-medium);
  border-left: 4px solid var(--primary-color);
}

.search-landing-trust-item strong {
  display: block;
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.search-landing-trust-item p {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .search-landing-benefits-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 500px;
  }

  .search-landing-benefit-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0.875rem 1rem;
    gap: 1rem;
  }

  .search-landing-benefit-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .search-landing-benefit-item h3 {
    margin-bottom: 0.125rem;
  }
}

@media (max-width: 768px) {
  .search-landing-page-hero {
    padding: 1rem 0 0.75rem;
  }

  .search-landing-page-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .search-landing-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .search-landing-hero-description {
    font-size: 0.9375rem;
    padding: 0 0.75rem;
  }

  /* Kompakt hero mobile styles */
  .search-landing-page-hero-compact {
    padding: 1rem 0.75rem;
  }

  .search-landing-page-hero-compact h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .search-landing-hero-subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .search-landing-hero-search {
    padding: 0 0.75rem;
  }

  .search-landing-mini-benefits {
    display: none;
  }

  .search-landing-benefits-container {
    display: none;
  }

  .search-landing-search-section {
    padding: 0.75rem;
    margin: 1rem 0.75rem;
    border-radius: 8px;
  }

  .search-landing-search-section h2 {
    font-size: 1.25rem;
  }

  .search-landing-search-hint {
    font-size: 0.8125rem;
    padding: 0 0.25rem;
  }

  .search-landing-search-container {
    padding: 0;
    margin: 0;
  }

  .search-landing-search-input {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: calc(100% - 1.5rem);
    margin: 0 0.75rem;
    max-width: none;
  }

  .search-landing-table-container {
    padding: 0 0.75rem;
    margin: 1rem auto;
  }

  .search-landing-data-table {
    font-size: 0.8125rem;
    border-radius: 8px;
  }

  .search-landing-data-table th,
  .search-landing-data-table td {
    padding: 0.5rem 0.625rem;
  }

  .search-landing-data-table th {
    font-size: 0.75rem;
  }

  .search-landing-trust-section {
    margin: 1.5rem auto;
    padding: 1.5rem 0.75rem;
  }

  .search-landing-trust-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .search-landing-trust-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .search-landing-trust-item {
    padding: 0.875rem;
    border-radius: 8px;
  }

  .search-landing-trust-item strong {
    font-size: 1rem;
  }

  .search-landing-trust-item p {
    font-size: 0.875rem;
  }

  .property-breadcrumb {
    padding: 0 0.75rem;
  }

  .property-details-hero {
    padding: 1.5rem 0;
    margin-bottom: 1rem;
  }

  .property-details-hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .property-address {
    font-size: 0.9375rem;
    flex-wrap: wrap;
  }

  .property-quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: -2rem auto 1.5rem;
    padding: 0 0.75rem;
  }

  .property-stat-card {
    padding: 1rem;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .property-info-section {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem auto;
    padding: 0 0.75rem;
  }

  .property-info-card,
  .property-promo-card {
    padding: 1.5rem;
  }

  .property-map-section {
    margin: 2rem auto;
    padding: 0 0.75rem;
  }

  .map-header h3 {
    font-size: 1.25rem;
  }

  .property-details-section {
    margin: 2rem auto;
    padding: 0 0.75rem;
  }

  .property-details-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .property-details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .property-detail-card h3 {
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }

  .property-details-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .detail-tag {
    font-size: 0.8125rem;
    padding: 0.2rem 0.5rem;
    margin: 0.1rem;
  }

  .property-subscription-section {
    padding: 3rem 0;
    margin-top: 2rem;
  }

  .subscription-header h2 {
    font-size: 1.75rem;
  }

  .subscription-header p {
    font-size: 1rem;
  }

  .property-subscription-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.75rem;
  }

  .property-subscription-box {
    padding: 2rem 1.25rem;
  }

  .property-subscription-box .btn-subscription {
    padding: 0.75rem 0.5rem !important;
    font-size: 0.875rem;
  }

  .property-subscription-box h3 {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .subscription-features li {
    font-size: 0.875rem;
    padding: 0.625rem 0;
  }

  .search-landing-data-table {
    font-size: 0.875rem;
  }

  .search-landing-data-table th,
  .search-landing-data-table td {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .search-landing-page-hero h1 {
    font-size: 1.75rem;
  }

  .search-landing-hero-subtitle {
    font-size: 1.25rem;
  }

  /* Kompakt hero small mobile */
  .search-landing-page-hero-compact h1 {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
  }

  .search-landing-page-hero-compact {
    padding: 0.75rem 0.5rem;
    margin-bottom: 0.25rem;
  }

  .search-landing-hero-subtitle {
    font-size: 0.875rem;
    line-height: 1.3;
    padding: 0 0.25rem;
  }

  .search-landing-mini-benefits {
    display: none;
  }

  .search-landing-hero-search {
    padding: 0 0.5rem;
    margin: 0.75rem auto 0;
  }

  .search-landing-data-table th:nth-child(3),
  .search-landing-data-table td:nth-child(3) {
    display: none;
  }

  /* Hide "Status" column on very small screens for companies */
  .search-landing-data-table th:nth-child(4),
  .search-landing-data-table td:nth-child(4) {
    display: none;
  }

  .search-landing-search-input {
    font-size: 0.9375rem;
    padding: 0.625rem 0.875rem;
  }

  .search-landing-table-container {
    margin: 0.5rem auto 1.5rem;
    padding: 0 0.5rem;
  }

  .search-landing-data-table {
    font-size: 0.8125rem;
  }

  .search-landing-data-table th,
  .search-landing-data-table td {
    padding: 0.5rem 0.625rem;
  }

  .search-landing-data-table th:first-child,
  .search-landing-data-table td:first-child {
    width: auto;
  }

  .search-landing-search-section {
    margin: 0.75rem 0.5rem;
    padding: 0.625rem;
  }

  .search-landing-trust-section {
    padding: 1.25rem 0.5rem;
  }
}

/* ========================================
   Property Listings (property-list-)
   Prefix: property-list-
   Beskrivning: Fastighetslistningar för /fastigheter routes
   ======================================== */

.property-list-breadcrumb,
.property-list-page-header,
.property-list-grid,
.property-list-type-grid,
.property-list-table,
.property-list-results {
  --property-accent: #2c3e50;         /* Muted dark blue-gray */
  --property-accent-hover: #34495e;   /* Slightly lighter on hover */
  --property-badge-bg: #ecf0f1;       /* Very light gray */
  --property-badge-text: #2c3e50;     /* Dark blue-gray text */
  --property-gradient-start: #f8f9fa; /* Subtle gradient start */
  --property-gradient-end: #e9ecef;   /* Subtle gradient end */
  --property-link: #495057;           /* Dark gray for links */
  --property-link-hover: var(--primary-color); /* Use theme primary on hover */
}

.property-list-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  margin-bottom: 24px;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.property-list-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.property-list-breadcrumb-link {
  color: #6b7280;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.property-list-breadcrumb-link:hover {
  background: #f3f4f6;
  color: var(--primary-color);
}

.property-list-breadcrumb-separator {
  color: #d1d5db;
  font-size: 1.125rem;
}

.property-list-breadcrumb-current {
  color: var(--primary-color);
  font-weight: 600;
  padding: 6px 12px;
  background: var(--property-badge-bg);
  border-radius: 6px;
}

.property-list-page-header {
  margin-bottom: 32px;
}

.property-list-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.property-list-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.property-list-stats {
  display: flex;
  gap: 24px;
  padding: 16px;
  background: linear-gradient(135deg, var(--property-gradient-start) 0%, var(--property-gradient-end) 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.property-list-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.property-list-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.property-list-stat-label {
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Grid Layout for County/Municipality Cards */
.property-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.property-list-grid-card {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.property-list-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--property-accent) 0%, var(--property-accent-hover) 100%);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.property-list-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

.property-list-grid-card:hover::before {
  transform: translateY(0);
}

.property-list-grid-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.property-list-grid-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.property-list-grid-card-code {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--property-badge-bg);
  color: var(--property-badge-text);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'SF Mono', monospace;
}

.property-list-grid-card-count {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin: 16px 0 8px 0;
}

.property-list-grid-card-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 16px;
}

.property-list-grid-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--property-link);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: gap 0.2s ease;
}

.property-list-grid-card-action:hover {
  gap: 10px;
  color: var(--property-link-hover);
}

.property-list-grid-card-action::after {
  content: '→';
  font-size: 1.125rem;
}

/* Property Type Cards (for municipality view) */
.property-list-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.property-list-type-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.property-list-type-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.property-list-type-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--property-accent) 0%, var(--property-accent-hover) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-bottom: 12px;
}

.property-list-type-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.property-list-type-codes {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 12px;
  font-family: 'SF Mono', monospace;
}

.property-list-type-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

/* Property Detail Cards (for final listing) */
.property-list-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.property-list-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.property-list-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--property-accent);
  transform: translateY(-2px);
}

.property-list-card-inner {
  display: flex;
  flex-direction: row;
  gap: 0;
}

.property-list-card-main {
  flex: 1;
  padding: 24px;
}

.property-list-card-side {
  width: 200px;
  background: linear-gradient(135deg, var(--property-gradient-start) 0%, var(--property-gradient-end) 100%);
  border-left: 1px solid #e2e8f0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.property-list-header {
  margin-bottom: 20px;
}

.property-list-designation {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--primary-color);
  line-height: 1.3;
}

.property-list-designation a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.property-list-designation a:hover {
  color: var(--property-link-hover);
  text-decoration: underline;
}

.property-list-address {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-list-address::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url('/images/location-pin.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.property-list-info {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: #64748b;
  align-items: center;
}

.property-list-id {
  font-weight: 500;
  color: #475569;
  font-family: 'SF Mono', monospace;
}

.property-list-status {
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
}

.property-list-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.property-list-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.property-list-detail-label {
  font-size: 0.8125rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.property-list-detail-value {
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
}

.property-list-price {
  margin-bottom: 8px;
}

.property-list-price-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 4px;
}

.property-list-price-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.property-list-price-year {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 4px;
}

.property-list-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--property-link);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.property-list-action-link:hover {
  color: var(--property-link-hover);
  gap: 10px;
}

.property-list-action-link::after {
  content: '→';
  font-size: 1.125rem;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .property-list-breadcrumb {
    font-size: 0.8125rem;
  }
  
  .property-list-title {
    font-size: 1.5rem;
  }
  
  .property-list-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .property-list-grid {
    grid-template-columns: 1fr;
  }
  
  .property-list-type-grid {
    grid-template-columns: 1fr;
  }
  
  .property-list-card-inner {
    flex-direction: column;
  }
  
  .property-list-card-main {
    padding: 20px;
  }
  
  .property-list-card-side {
    width: 100%;
    padding: 20px;
    border-left: none;
    border-top: 1px solid #e2e8f0;
  }
  
  .property-list-designation {
    font-size: 1.125rem;
  }
  
  .property-list-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .property-list-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .property-list-price-value {
    font-size: 1.5rem;
  }
  
  /* Convert table to cards on mobile */
  .property-list-table-responsive {
    display: none;
  }
  
  .property-list-mobile-cards {
    display: block;
  }
}

@media (min-width: 769px) {
  .property-list-mobile-cards {
    display: none;
  }
  
  .property-list-table-responsive {
    display: block;
  }
}

.campaign-price-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.original-price {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 500;
}

.campaign-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.property-subscription-box .campaign-price .price-amount {
  color: #ef4444 !important;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}

.property-subscription-box .campaign-price .price-currency {
  color: #ef4444 !important;
  font-weight: 600;
  font-size: 1.25rem;
}

.campaign-badge {
  background: #ef4444;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Table styling for desktop */
.property-list-table {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.property-list-table thead {
  background: linear-gradient(135deg, var(--property-gradient-start) 0%, var(--property-gradient-end) 100%);
}

.property-list-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #475569;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #e2e8f0;
}

.property-list-table td {
  padding: 16px;
  color: #1e293b;
  border-bottom: 1px solid #f1f5f9;
}

.property-list-table tbody tr:hover {
  background: #f8fafc;
}

.property-list-table tbody tr:last-child td {
  border-bottom: none;
}

.property-list-table-action {
  color: var(--property-link);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.property-list-table-action:hover {
  gap: 8px;
  color: var(--property-link-hover);
}

.property-list-table-action::after {
  content: '→';
}


.company-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.company-detail-breadcrumb {
  padding: 16px 0;
  margin-bottom: 8px;
}

.company-detail-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  background: #f9fafb;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.company-detail-breadcrumb a:hover {
  background: #e5e7eb;
  color: var(--primary-color);
  transform: translateX(-2px);
}

.company-detail-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 16, 32, 0.06);
  border: 1px solid rgba(0, 16, 32, 0.04);
}

.company-detail-hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

.company-detail-hero-info {
  flex: 1;
}

.company-detail-hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.company-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.company-detail-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: white;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,16,32,0.06);
}

#org-number {
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  font-weight: 600;
  color: var(--primary-color);
}

.company-detail-meta button {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 8px;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.company-detail-meta button:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 16, 32, 0.15);
}

.company-detail-copy-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.company-detail-copy-tooltip.show {
  opacity: 1;
}

.company-detail-meta a {
  padding: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  color: #6b7280;
  background: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.company-detail-meta a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 16, 32, 0.15);
}

.company-detail-description {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 15px;
}

.company-detail-risk-box {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
  overflow: visible;
  border: 2px solid transparent;
}

.company-detail-risk-indicator {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.company-detail-risk-box.high-risk {
  background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%);
  border-color: #fca5a5;
}

.company-detail-risk-box.high-risk .company-detail-risk-indicator {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #dc2626;
  border: 1px solid #fca5a5;
}

.company-detail-risk-box.low-risk {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #86efac;
}

.company-detail-risk-box.low-risk .company-detail-risk-indicator {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #059669;
  border: 1px solid #86efac;
}

.company-detail-risk-box p {
  font-size: 15px;
  color: #1f2937;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.6;
}

.company-detail-risk-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.company-detail-risk-box ul li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.company-detail-risk-box ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 16px;
}

.company-detail-action-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.company-detail-action-buttons button {
  flex: 1;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.company-detail-risk-box small {
  display: block;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
}

.company-detail-section {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,16,32,0.06);
  margin-bottom: 24px;
}

.company-detail-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f3f4f6;
}

.company-detail-section h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-detail-section-badge {
  padding: 4px 12px;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  color: #4338ca;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.company-detail-section p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Tables - Premium Style */
.company-detail-table-wrapper {
  border-radius: 16px;
  overflow-x: auto;
  overflow-y: visible;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: relative;
}

.company-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.company-detail-table * {
  box-sizing: border-box;
}

.company-detail-table thead {
  background: linear-gradient(180deg, #fafbfc 0%, #f3f4f6 100%);
}

.company-detail-table th {
  text-align: left;
  padding: 16px;
  font-weight: 600;
  color: #111827;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid #e5e7eb;
  vertical-align: middle;
  box-sizing: border-box;
}

.company-detail-table td {
  text-align: left;
  padding: 16px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
  font-size: 14px;
  box-sizing: border-box;
}

.company-detail-table th,
.company-detail-table td {
  padding: 16px !important;
  text-align: left !important;
  box-sizing: border-box !important;
}


.company-detail-table th.company-detail-table-center,
.company-detail-table td.company-detail-table-center {
  text-align: center !important;
}

.company-detail-table tbody tr {
  transition: all 0.2s ease;
}

.company-detail-table tbody tr:hover {
  background: linear-gradient(90deg, #f9fafb 0%, #f3f4f6 100%);
}

.company-detail-table tbody tr:last-child td {
  border-bottom: none;
}


.company-detail-table.key-value-table td:first-child {
  font-weight: 500;
  color: #6b7280;
  width: 35%;
}

/* Status Icons */
.company-detail-table svg {
  width: 20px;
  height: 20px;
}

/* Export/Import Grid */
.company-detail-export-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.company-detail-export-box {
  background: linear-gradient(135deg, #fafbfc 0%, #f3f4f6 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.2s ease;
}

.company-detail-export-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.company-detail-export-box strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.company-detail-export-box p {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
}

.company-detail-export-box small {
  display: block;
  color: #9ca3af;
  font-size: 12px;
  margin-top: 8px;
}

/* Promo Section */
.company-detail-promo {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #93c5fd;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.company-detail-promo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

.company-detail-promo-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Empty States */
.company-detail-notice {
  padding: 32px;
  text-align: center;
  color: #6b7280;
  font-style: italic;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-radius: 16px;
  border: 2px dashed #d1d5db;
}

/* Special Table Styling */
.company-detail-table-background {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.company-detail-table-center {
  text-align: center;
}

.company-detail-table th.company-detail-table-center,
.company-detail-table td.company-detail-table-center {
  text-align: center;
}

.company-detail-section:has(h4:contains("Fordon")) .company-detail-table,
.vehicles-table {
  min-width: 1100px;
  table-layout: fixed;
}

.vehicles-table th:first-child,
.vehicles-table td:first-child {
  width: 90px;
  min-width: 90px;
}

.vehicles-table th:nth-child(2),
.vehicles-table td:nth-child(2) {
  width: 185px;
}

.vehicles-table th:nth-child(3),
.vehicles-table td:nth-child(3) {
  width: 130px;
}

.vehicles-table th:nth-child(4),
.vehicles-table td:nth-child(4) {
  width: 150px;
}

.vehicles-table th:nth-child(5),
.vehicles-table td:nth-child(5) {
  width: 140px;
}

.vehicles-table th:nth-child(6),
.vehicles-table td:nth-child(6) {
  width: 110px;
}

.vehicles-table th:nth-child(7),
.vehicles-table td:nth-child(7) {
  width: 130px;
}

.vehicles-table th:nth-child(8),
.vehicles-table td:nth-child(8) {
  width: auto;
}

.company-detail-table-wrapper.has-scroll {
  box-shadow: 
    inset -10px 0 10px -10px rgba(0,0,0,0.1),
    0 1px 3px rgba(0,0,0,0.05);
}

.company-detail-table-wrapper {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.company-detail-table.wide-table {
  min-width: 800px;
  table-layout: fixed;
}

.company-detail-table.wide-table th,
.company-detail-table.wide-table td {
  min-width: 100px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .public-sales-table th,
  .public-sales-table td {
    border-right: 1px solid #e5e7eb;
  }
  
  .public-sales-table th:last-child,
  .public-sales-table td:last-child {
    border-right: none;
  }
  
  .public-sales-table thead th {
    border-right-color: #d1d5db;
  }
}

.export-import-table {
  table-layout: auto !important;
  min-width: 400px;
}

.export-import-table th:first-child,
.export-import-table td:first-child {
  width: 50%;
  min-width: 200px;
  text-align: left !important;
}

.export-import-table th:nth-child(2),
.export-import-table td:nth-child(2),
.export-import-table th:nth-child(3),
.export-import-table td:nth-child(3) {
  width: 25%;
  min-width: 80px;
  text-align: center !important;
}

.export-import-table i[data-lucide] {
  display: inline-block;
  vertical-align: middle;
}

/* Badges and Pills */
.company-detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.company-detail-badge.success {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}

.company-detail-badge.warning {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  color: #ea580c;
}

.company-detail-badge.danger {
  background: linear-gradient(135deg, #fee2e2 0%, #fca5a5 100%);
  color: #dc2626;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .company-detail-hero-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .company-detail-risk-box {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .company-detail-container {
    padding: 0 0.75rem;
  }
  
  .company-detail-hero {
    border-radius: 0;
    padding: 0;
    margin: 0 0 16px 0;
    background: white;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .company-detail-hero-content {
    display: block;
    padding: 16px;
  }
  
  .company-detail-hero-info {
    width: 100%;
    margin: 0;
  }
  
  .company-detail-hero h1 {
    font-size: 28px;
  }
  
  .company-detail-meta {
    gap: 8px;
  }
  
  .company-detail-meta-item {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .company-detail-risk-box {
    padding: 16px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin: 0 0 16px 0;
    width: auto;
  }
  
  .company-detail-risk-indicator {
    display: none;
  }
  
  .company-detail-section {
    padding: 16px;
    margin: 0 0 8px 0;
    border-radius: 0;
    box-shadow: none;
    background: white;
    border: none;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .company-detail-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .company-detail-table-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    border-radius: 0;
    border: none;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
  }
  
  .company-detail-table-background {
    border-radius: 0;
    box-shadow: none;
  }
  
  /* Mobile table transformation - Data-focused design */
  .company-detail-table {
    display: block;
    border: none;
    width: 100%;
    table-layout: auto !important;
    min-width: unset !important;
  }
  
  .company-detail-table thead {
    display: none;
  }
  
  .company-detail-table tbody {
    display: block;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px 0;
  }
  
  /* Each row is a data item */
  .company-detail-table tr {
    display: block;
    margin: 0;
    padding: 12px 16px;
    background: transparent;
    border-bottom: 1px solid #f3f4f6;
  }
  
  .company-detail-table tr:last-child {
    border-bottom: none;
  }
  
  .company-detail-table td {
    display: block;
    padding: 0;
    border: none;
    line-height: 1.5;
    width: 100%;
  }
  
  .company-detail-table td[data-label] {
    display: block;
    padding: 8px 0;
    width: 100%;
  }
  
  .company-detail-table td[data-label]:before {
    content: attr(data-label);
    display: block;
    font-weight: 400;
    color: #94a3b8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    opacity: 0.8;
  }
  
  .company-detail-table td[data-label] {
    color: #0f172a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
  }
  
  
  .company-detail-table td[data-label="Befattning"] {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #6b7280 !important;
  }
  
  .company-detail-table td[data-label="Kontrollerar"],
  .company-detail-table td[data-label="Utövar genom"] {
    font-size: 18px;
    font-weight: 500;
  }
  
  .company-detail-table td[data-label="Egenskap"] {
    display: none;
  }
  
  .company-detail-table td[data-label="Värde"] {
    color: #0f172a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
  }
  
  .company-detail-table td[data-label="Värde"]:before {
    content: attr(data-label-text);
    display: block;
    font-weight: 400;
    color: #94a3b8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    opacity: 0.8;
  }
  
  .company-detail-table td[data-label="Namn"]:before,
  .company-detail-table td[data-label-text="Verkställande direktör"]:before,
  .company-detail-table td[data-label-text="Styrelseledamot"]:before,
  .company-detail-table td[data-label-text="Styrelseordförande"]:before,
  .company-detail-table td[data-label-text="Styrelsesuppleant"]:before,
  .company-detail-table td[data-label-text="Revisor"]:before,
  .company-detail-table td[data-label-text="Huvudansvarig revisor"]:before,
  .company-detail-table td[data-label-text="Revisorssuppleant"]:before,
  .company-detail-table td[data-label-text="Lekmannarevisor"]:before,
  .company-detail-table td[data-label-text="Extern verkställande direktör"]:before,
  .company-detail-table td[data-label-text="Vice verkställande direktör"]:before {
    content: "NAMN" !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #94a3b8 !important;
  }
  
  .company-detail-table td[data-label="Namn"] table,
  .company-detail-table td > table {
    margin-top: 8px;
  }
  
  .company-detail-table td[data-label="Namn"] {
    padding-bottom: 0 !important;
  }
  
  @media (max-width: 768px) {
    .company-detail-table tbody td[data-label="Namn"] {
      font-size: 22px !important;
      font-weight: 600 !important;
      color: #0f172a !important;
      line-height: 1.3 !important;
      padding: 12px 0 !important;
    }
    
    .company-detail-table tbody td[data-label="Namn"]:before {
      font-size: 11px !important;
      font-weight: 400 !important;
      margin-bottom: 6px !important;
    }
    
    .company-detail-table tbody td[data-label="Befattning"] {
      font-size: 15px !important;
      font-weight: 400 !important;
      color: #6b7280 !important;
      padding: 8px 0 4px 0 !important;
    }
    
    .company-detail-table tbody td[data-label="Befattning"]:before {
      font-size: 11px !important;
      margin-bottom: 4px !important;
    }
  }
  
  .company-detail-table td[data-label="Typ"] {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #64748b !important;
  }
  
  .company-detail-table td[data-label="Skattetyp"] {
    font-size: 16px;
    color: #0f172a;
    padding: 0;
    border: none;
    width: 100%;
  }
  
  .company-detail-table td[data-label="Skattetyp"]:before {
    content: attr(data-label);
    display: block;
    font-weight: 400;
    color: #94a3b8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    opacity: 0.8;
  }
  
  .company-detail-table td[data-label="Status"] {
    display: none !important;
  }
  
  .company-detail-table tr.tax-registration-row td[data-label="Skattetyp"] {
    display: block;
  }
  
  .company-detail-table tr.tax-registration-row td[data-label="Skattetyp"]:after {
    content: none;
  }
  
  /* Tax Registration Table Styles */
  .tax-registration-table .tax-registration-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 24px;
  }
  
  .tax-registration-table .tax-text {
    flex: 1;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
  }
  
  .tax-registration-table .tax-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
  }
  
  .tax-registration-table .tax-status svg {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
  }
  
  .tax-registration-table .tax-status-yes {
    background-color: #f0fdf4;
    color: #16a34a;
  }
  
  .tax-registration-table .tax-status-no {
    background-color: #fef2f2;
    color: #dc2626;
  }
  
  /* Mobile styles for tax registration table */
  @media (max-width: 768px) {
    .tax-registration-table td {
      padding: 16px !important;
      border-bottom: none !important;
    }
    
    .tax-registration-table tbody tr {
      border-bottom: none !important;
    }
    
    .tax-registration-table tbody tr:last-child td {
      border-bottom: none !important;
    }
    
    .tax-registration-table .tax-registration-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    
    .tax-registration-table .tax-text {
      font-size: 15px;
      padding-right: 12px;
    }
    
    .tax-registration-table .tax-status {
      width: 24px !important;
      height: 24px !important;
      min-width: 24px;
      min-height: 24px;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    .tax-registration-table .tax-status svg {
      width: 16px !important;
      height: 16px !important;
    }
  }
  
  .address-content {
    display: block;
  }
  
  .address-text {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    color: #0f172a;
    margin-bottom: 8px;
  }
  
  .address-link {
    display: inline-block;
    padding: 8px 14px;
    background: #f0f9ff;
    color: #0369a1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    margin-right: 8px;
    margin-bottom: 4px;
    transition: background 0.2s;
  }
  
  .address-link:active {
    background: #e0f2fe;
  }
  
  .status-item {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    padding: 2px 0;
  }
  
  .company-detail-table td svg {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
    margin-right: 6px;
  }
  
  .company-detail-table td table {
    width: 100% !important;
    display: block;
    margin: 0;
    padding: 0;
    background: transparent;
  }
  
  .company-detail-table td table thead {
    display: none;
  }
  
  .company-detail-table td table tbody {
    display: block;
    width: 100%;
  }
  
  .company-detail-table td table tbody tr {
    display: block;
    width: 100%;
    margin: 0 0 12px 0;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
  }
  
  .company-detail-table td table tbody tr:last-child {
    margin-bottom: 0;
  }
  
  .company-detail-table td table tbody td {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
  }
  
  .company-detail-table td table tbody td:before {
    display: none !important;
  }
  
  .company-detail-table td table tbody td:first-child {
    font-size: 18px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.4;
    word-wrap: break-word;
  }
  
  .company-detail-table td table tbody td:not(:first-child) {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
  }
  
  .company-detail-table-center {
    text-align: left !important;
  }
  
  .company-detail-table.info-table tr {
    padding: 12px 16px;
  }
  
  .company-detail-table.info-table td {
    display: block;
    padding: 0;
  }
  
  .company-detail-table.info-table td:first-child {
    font-size: 11px;
    font-weight: 400;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.8;
    background: transparent;
    border: none;
    display: block !important;
  }
  
  .company-detail-table.info-table td:first-child:before {
    display: none;
  }
  
  .company-detail-table.info-table td:last-child {
    font-size: 16px;
    line-height: 1.5;
    color: #0f172a;
    background: transparent;
    border: none;
  }
  
  .company-detail-table.info-table td:last-child:before {
    display: none;
  }
  
  .company-detail-promo {
    border-radius: 0;
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .company-detail-export-box {
    border-radius: 8px;
    padding: 16px;
  }
  
  .company-detail-notice {
    border-radius: 8px;
    padding: 16px;
  }
  
  .company-detail-action-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .company-detail-action-buttons button {
    width: 100%;
    margin: 0;
  }
  
  .company-detail-export-grid {
    grid-template-columns: 1fr;
  }
  
  .company-detail-promo-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .company-detail-promo-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .company-detail-container {
    padding: 0;
  }
  
  .company-detail-breadcrumb {
    padding: 12px;
    margin-bottom: 0;
  }
  
  .company-detail-hero {
    padding: 0;
    margin: 0;
  }
  
  .company-detail-hero-content {
    padding: 12px;
  }
  
  .company-detail-hero h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .company-detail-meta {
    gap: 6px;
    margin-bottom: 12px;
  }
  
  .company-detail-meta-item {
    font-size: 11px;
    padding: 4px 8px;
  }
  
  .company-detail-description {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .company-detail-risk-box {
    padding: 12px;
    margin: 0 0 12px 0;
  }
  
  .company-detail-section {
    padding: 12px;
    margin: 0 0 8px 0;
  }
  
  .company-detail-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .company-detail-section p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .company-detail-table th,
  .company-detail-table td {
    padding: 8px;
    font-size: 12px;
  }
  
  .company-detail-export-box {
    padding: 12px;
  }
  
  .company-detail-promo {
    padding: 12px;
  }
  
  .company-detail-notice {
    padding: 12px;
  }
}

.property-report-section.content-section {
  padding: 0;
}

.property-report-section .content-section__text {
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .property-report-section .content-section__text {
    padding: 0 2rem 0 0;
  }
}

.property-report-btn {
  display: inline-block !important;
  width: auto !important;
  margin-top: 1rem;
  white-space: nowrap;
}

.property-report-demo-link {
  position: relative;
  display: block;
  text-decoration: none;
}

.property-report-demo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  z-index: 10;
  animation: property-report-pulse 2s infinite;
  box-shadow: 0 4px 12px rgba(0, 16, 32, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.02em;
  will-change: transform;
  backface-visibility: hidden;
  transition: all 0.3s ease;
}

@keyframes property-report-pulse {
  0% { transform: scale(1) translateZ(0); }
  50% { transform: scale(1.05) translateZ(0); }
  100% { transform: scale(1) translateZ(0); }
}

@keyframes property-report-glow {
  0%, 100% { 
    box-shadow: 0 10px 30px rgba(0, 16, 32, 0.8), 0 0 20px rgba(255, 255, 255, 0.2);
  }
  50% { 
    box-shadow: 0 10px 40px rgba(0, 16, 32, 1), 0 0 30px rgba(255, 255, 255, 0.4);
  }
}

.property-report-demo-link:hover img {
  transform: scale(1.02) !important;
}

.property-report-demo-link:hover .property-report-demo-badge {
  animation: property-report-glow 1s ease-in-out infinite;
  transform: translateX(-5px) translateY(-5px);
  background: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 16, 32, 0.8);
}


.browse-properties-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
  margin-top: 40px;
}

.browse-properties-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 12px;
}

.browse-properties-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.browse-properties-counties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.browse-county-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  overflow: hidden;
}

.browse-county-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.browse-county-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.browse-county-card:hover::before {
  transform: scaleX(1);
}

.browse-county-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.browse-county-count {
  font-size: 1rem;
  color: #64748b;
}

.browse-all-properties-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: flex;
  width: fit-content;
}

.browse-all-properties-link:hover {
  background: #34495e;
  gap: 16px;
  transform: translateX(2px);
}

.browse-all-properties-link svg {
  transition: transform 0.3s ease;
}

.browse-all-properties-link:hover svg {
  transform: translateX(4px);
}

.browse-options-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 40px auto;
}

.browse-option-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.browse-option-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.browse-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border-radius: 12px;
  margin-bottom: 20px;
  color: white;
}

.browse-option-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.browse-option-card p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.5;
}

.browse-option-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2c3e50;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.browse-option-link:hover {
  gap: 12px;
  color: #1a1a1a;
}

.browse-option-link svg {
  transition: transform 0.2s ease;
}

.browse-option-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .browse-properties-section {
    padding: 40px 16px;
  }
  
  .browse-properties-section h2 {
    font-size: 1.5rem;
  }
  
  .browse-properties-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .browse-properties-counties {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .browse-county-card {
    padding: 16px;
  }
  
  .browse-county-name {
    font-size: 1.125rem;
  }
  
  .browse-all-properties-link {
    font-size: 1rem;
    padding: 12px 24px;
  }
  
  .browse-options-container {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px auto;
  }
  
  .browse-option-card {
    padding: 24px 20px;
  }
  
  .browse-option-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  
  .browse-option-card h3 {
    font-size: 1.125rem;
  }
  
  .browse-option-card p {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
}


/* Property Report Example Section - Details page */
.property-report-example-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
  margin-top: 60px;
}

.property-report-example-container {
  max-width: 1200px;
  margin: 0 auto;
}

.property-report-example-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 16px;
}

.property-report-example-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.property-report-example-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.property-report-example-text h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.property-report-example-text p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

.property-report-example-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.property-report-example-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  color: #475569;
}

.property-report-example-features li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.property-report-example-preview {
  position: relative;
}

.property-report-demo-link {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.property-report-demo-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.property-report-demo-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.property-report-demo-link:hover img {
  transform: scale(1.02);
}

.property-report-demo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #2c3e50;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.property-report-demo-link:hover .property-report-demo-badge {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {
  .property-report-example-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .property-report-example-text {
    order: 2;
  }
  
  .property-report-example-preview {
    order: 1;
  }
}

@media (max-width: 640px) {
  .property-report-example-section {
    padding: 60px 16px;
  }
  
  .property-report-example-section h2 {
    font-size: 2rem;
  }
  
  .property-report-example-subtitle {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
  
  .property-report-example-text h3 {
    font-size: 1.5rem;
  }
  
  .property-report-example-text p {
    font-size: 1rem;
  }
  
  .property-report-demo-badge {
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    font-size: 0.875rem;
  }
}

/* ========================================
   COMPANY DETAILS 
   ======================================== */

.company-detail-section {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0 0 32px 0;
    margin-bottom: 0;
}

.company-detail-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.company-detail-section h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.company-detail-section-header {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 12px;
}

.company-detail-section-header h4 {
    border: none;
    padding: 0;
    margin: 0;
}

.company-detail-table-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    overflow: visible;
}

.company-detail-table {
    background: transparent;
}

.company-detail-table td {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.company-detail-table tbody tr:hover {
    background: #f9fafb;
}

.company-detail-table-background {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.company-detail-promo {
    background: linear-gradient(90deg, rgba(0, 105, 180, 0.03) 0%, transparent 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.company-detail-promo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 20px;
    flex-wrap: wrap;
}

.company-detail-promo-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.company-detail-notice {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

.company-detail-export-grid {
    margin-bottom: 24px;
}

.company-detail-export-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.company-detail-export-box:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.company-detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-detail-section ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #374151;
}

.company-detail-section ul li:last-child {
    border-bottom: none;
}

.company-sni-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-sni-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
}

.company-sni-list li:hover {
    background: #f9fafb;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.company-sni-list li:last-child {
    border-bottom: none;
}

.company-sni-code {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 13px;
    font-weight: 600;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.company-sni-code:hover {
    background: #003d6b;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.company-sni-description {
    color: #1d1d1b;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.company-sni-list li:nth-child(even) .company-sni-code {
    background: #1d1d1b;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.company-sni-list li:nth-child(even) .company-sni-code:hover {
    background: #0f0f0f;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.company-sni-list li:nth-child(3n) .company-sni-code {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d6b 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-sni-list li:nth-child(3n) .company-sni-code:hover {
    background: linear-gradient(135deg, #003d6b 0%, #002547 100%);
}

.company-detail-section + .company-detail-section {
    margin-top: 32px;
}

.company-detail-section p {
    margin-bottom: 16px;
}

/* Organization List - Modern Design */
.org-list-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.org-list-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.org-list-card:hover::before {
    opacity: 1;
}

.org-list-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.org-list-card-inner {
    padding: 24px;
}

.org-list-header {
    margin-bottom: 16px;
    position: relative;
}

.org-list-company-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.org-list-company-name:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.org-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
}

.org-list-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.org-list-meta-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
    margin-right: 4px;
}

.org-list-meta-item:first-child::before {
    display: none;
}

.org-list-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.org-list-status-badge.active {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--primary-color);
    border: 1px solid #bae6fd;
}

.org-list-status-badge.inactive {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.org-list-status-badge.bankruptcy {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.org-list-status-badge.liquidation {
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
}

.org-list-description {
    font-size: 14px;
    color: #475569;
    margin: 16px 0;
    line-height: 1.6;
    padding: 12px;
    background: #fafbfc;
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
}

.org-list-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
}

.org-list-tax-badges {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.org-list-tax-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.org-list-tax-badge.registered {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.org-list-tax-badge.registered:hover {
    background: var(--primary-color);
    color: white;
}

.org-list-tax-badge.not-registered {
    background: white;
    color: #94a3b8;
    border: 2px solid #e2e8f0;
}

.org-list-tax-badge svg {
    width: 14px;
    height: 14px;
    transition: stroke 0.2s ease;
}

.org-list-tax-badge.registered:hover svg {
    stroke: white;
}

.org-list-metric-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.org-list-metric-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.org-list-metric-item strong {
    color: #1e293b;
    font-weight: 700;
}

.org-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
    background: linear-gradient(to right, #fafbfc 0%, transparent 100%);
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.org-list-footer-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.org-list-registration {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.org-list-registration-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.org-list-registration-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

.org-list-lei {
    font-size: 11px;
    color: #94a3b8;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

.org-list-action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    background: white;
    transition: all 0.2s ease;
}

.org-list-action-link:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 69, 180, 0.2);
}

.org-list-action-link::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.2s ease;
}

.org-list-action-link:hover::after {
    transform: translateX(3px);
}

.org-list-special-status {
    display: inline-block;
    padding: 2px 8px;
    margin-left: 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.org-list-special-status.konkurs {
    background: #dc2626;
    color: white;
}

.org-list-special-status.likvidation {
    background: #ea580c;
    color: white;
}

.org-list-special-status.fusion {
    background: #2563eb;
    color: white;
}


.public-sales-table tbody td {
  padding: 12px 14px;
  font-size: 0.9375rem;
}

.public-sales-table tbody td.company-detail-table-center {
  font-weight: 500;
  color: #1e293b;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.public-sales-table tbody tr:nth-child(even) {
  background-color: rgba(248, 250, 252, 0.5);
}

.public-sales-table tbody tr:hover {
  background-color: rgba(59, 130, 246, 0.05);
  transition: background-color 0.15s ease;
}

.public-sales-table thead th {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  padding: 12px 16px;
  background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
}

.public-sales-table tbody td.company-detail-table-center:empty::before {
  content: "–";
  color: #cbd5e1;
  font-weight: 400;
}

.public-sales-table tbody td:first-child {
  font-weight: 500;
  color: #334155;
  max-width: 350px;
  font-size: 0.9375rem;
}

/* ========================================
   CUSTOM SECTIONS 4
   ======================================== */

/* ========================================
   Order Details Pages (order-)
   Prefix: order-
   Beskrivning: Orderdetaljer och statusuppdateringar
   ======================================== */


.order-customer-section {
    margin-bottom: 2rem;
}

.order-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
}

.order-customer-info {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
}

.order-customer-info table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.order-customer-info tr {
    border-bottom: 1px solid #f0f0f0;
}

.order-customer-info tr:last-child {
    border-bottom: none;
}

.order-customer-info td {
    padding: 1rem 1.5rem;
}

.order-customer-info td:first-child {
    font-weight: 500;
    color: var(--text-gray);
    width: 200px;
    background: #fafafa;
}

.order-customer-info td:last-child {
    color: var(--primary-color);
}

.order-field-value {
    display: inline-block;
    margin-right: 0;
}

.order-customer-info a {
    color: #0066cc;
    text-decoration: none;
    margin-left: 12px;
    font-size: 0.9em;
    font-weight: 500;
}

.order-customer-info a:hover {
    text-decoration: underline;
}

.order-section {
    margin-bottom: 2rem;
}

.order-section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.order-table-wrapper {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
}

.order-test-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border-color);
    text-align: center;
}

/* Delivery Success Styles */
.order-delivery-success {
    background: #f0f7ff;
    border: 1px solid #d4e4f7;
    padding: 1.25rem;
    border-radius: var(--radius-medium);
    text-align: center;
    margin-top: 0.75rem;
}

.order-delivery-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    line-height: 40px;
    font-size: 20px;
}

.order-delivery-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.order-delivery-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.order-report-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.order-report-button:hover {
    background: #001830;
    transform: translateY(-1px);
    text-decoration: none;
}

.order-status-pending,
.order-polling-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.order-polling-inline {
    background: #f0f8ff;
    padding: 4px 10px;
    border-radius: 4px;
}

.order-loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    border: 2px solid #e0e0e0;
    border-top-color: #001020;
    border-radius: 50%;
    animation: order-spin 1s linear infinite;
    flex-shrink: 0;
}

.order-loading-text,
.order-polling-text {
    color: #666;
    font-size: 0.9em;
}

@keyframes order-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.order-field-edit {
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    width: 250px;
}

.order-field-edit:focus {
    outline: none;
    border-color: var(--primary-color);
}

.order-field-edit-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-edit-actions {
    margin-left: 10px;
}

.order-save-btn,
.order-cancel-btn {
    padding: 4px 12px;
    border-radius: 4px;
    border: none;
    font-size: 13px;
    cursor: pointer;
    margin-right: 5px;
}

.order-save-btn {
    background: var(--primary-color);
    color: white;
}

.order-save-btn:hover {
    background: #001830;
}

.order-cancel-btn {
    background: #f0f0f0;
    color: #666;
}

.order-cancel-btn:hover {
    background: #e0e0e0;
}

.order-edit-link {
    color: #0066cc;
    text-decoration: none;
    margin-left: 12px;
    font-size: 0.9em;
    font-weight: 500;
}

.order-edit-link:hover {
    text-decoration: underline;
}

/* ========================================
   Error Pages (404)
   Prefix: error-
   ======================================== */

.error-page-container {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.error-page-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Large Error Number Display */
.error-page-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: 150px;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.error-page-number span {
    display: inline-block;
    position: relative;
}

/* Error Title and Description */
.error-page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-page-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* Error Quick Links */
.error-page-links {
    margin-bottom: 2rem;
}

.error-links-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.error-link-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.error-link-text:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.error-link-text i {
    width: 20px;
    height: 20px;
}

/* Error Support Section */
.error-page-support {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.error-page-support p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.error-support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.error-support-link:hover {
    border-bottom-color: var(--primary-color);
}

/* Error Page Mobile Responsive */
@media (max-width: 768px) {
    .error-page-number {
        font-size: 100px;
    }
    
    .error-page-title {
        font-size: 1.875rem;
    }
    
    .error-page-description {
        font-size: 1.125rem;
    }
    
    .error-link-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .error-page-number {
        font-size: 80px;
        gap: 0.25rem;
    }
    
    .error-page-title {
        font-size: 1.5rem;
    }
    
    .error-links-inline {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   Company Payment Box Styles
   Prefix: company-payment-
   Description: Payment box styles for company details page
   ======================================== */

.company-payment-box {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.company-payment-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 16, 32, 0.2);
}

.company-payment-box.featured {
    border-color: #111827;
    box-shadow: 0 10px 25px -8px rgba(0, 16, 32, 0.15);
}

.company-payment-box.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 16, 32, 0.25);
}

.payment-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #111827;
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
}

.company-payment-box.featured .payment-label {
    background: #111827;
    color: white;
    border-color: #111827;
}

.company-payment-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    text-align: center;
    color: #111827;
}

.campaign-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 1rem 0;
}

/* Example Report Button */
.example-report-button {
    margin: 1.5rem 0 1rem 0;
}

.example-report-button a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.example-report-button a:hover {
    background: white;
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.example-mini-image {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.example-report-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.example-title {
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

.example-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
}

.example-arrow {
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.example-report-button a:hover .example-arrow {
    color: #111827;
    transform: translateX(3px);
}

.original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 1.5rem;
    font-weight: 500;
}

.campaign-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.campaign-price .price-amount {
    color: #ef4444;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
}

.campaign-price .price-currency {
    color: #ef4444;
    font-weight: 600;
    font-size: 1.25rem;
}

.campaign-badge {
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-description {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    margin: 1rem 0 1.5rem;
}

.payment-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.payment-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.payment-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #10b981;
}

.company-payment-box .btn-primary {
    width: 100%;
    max-width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 1.5rem;
    transition: all 0.2s ease;
    background: #111827;
    color: white;
    border: none;
    cursor: pointer;
    word-wrap: break-word;
    white-space: normal;
}

.company-payment-box .btn-primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.company-payment-box small {
    display: block;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Success variant styling (regular payment box) */
.company-payment-box.featured:not(.high-risk) {
    border-color: #10b981;
    background: linear-gradient(to bottom, #f0fdf4, #ffffff);
}

.company-payment-box.featured:not(.high-risk) .payment-label {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

/* High risk variant styling */
.company-payment-box.high-risk {
    border-color: #fbbf24;
    background: linear-gradient(to bottom, #fffbeb, #ffffff);
}

.company-payment-box.high-risk .payment-label {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
}

/* Tax Registration Table Styles */
.tax-registration-table .tax-registration-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 24px;
}

.tax-registration-table .tax-text {
    flex: 1;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
}

.tax-registration-table .tax-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}

.tax-registration-table .tax-status svg {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
}

.tax-registration-table .tax-status-yes {
    background-color: #f0fdf4;
    color: #16a34a;
}

.tax-registration-table .tax-status-no {
    background-color: #fef2f2;
    color: #dc2626;
}

/* Mobile styles for tax registration table */
@media (max-width: 768px) {
    .tax-registration-table td {
        padding: 16px !important;
        border-bottom: none !important;
    }
    
    .tax-registration-table tbody tr {
        border-bottom: none !important;
    }
    
    .tax-registration-table tbody tr:last-child td {
        border-bottom: none !important;
    }
    
    .tax-registration-table .tax-registration-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .tax-registration-table .tax-text {
        font-size: 15px;
        padding-right: 12px;
    }
    
    .tax-registration-table .tax-status {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px;
        min-height: 24px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .tax-registration-table .tax-status svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-payment-box {
        padding: 1.5rem;
        width: 100% !important;
        max-width: 100% !important;
        margin: 1.5rem 0;
        box-sizing: border-box;
    }

    .campaign-price .price-amount {
        font-size: 2.5rem;
    }

    .original-price {
        font-size: 1.25rem;
    }
}
