
.db-sample-switcher-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.db-sample-switcher {
    display: inline-flex;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 8px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.db-sample-switcher::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(255, 193, 7, 0.05));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.db-sample-switcher:hover::before {
    opacity: 1;
}

.db-sample-switch-btn {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    color: #6c757d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    z-index: 2;
    outline: none;
    text-decoration: none;
}

.db-sample-switch-btn:hover {
    color: #495057;
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.db-sample-switch-btn:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

.db-sample-switch-btn.active {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transform: translateY(-2px);
}

.db-sample-switch-btn.active:hover {
    background: linear-gradient(135deg, #004499 0%, #0066cc 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.db-sample-switch-btn i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.db-sample-switch-btn:hover i {
    transform: scale(1.1);
}

.db-sample-switch-btn.active i {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.db-sample-switch-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.db-sample-switch-btn:active::before {
    width: 100px;
    height: 100px;
}

.db-sample-table-wrapper {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.db-sample-table-wrapper[style*="display: none"] {
    opacity: 0;
    transform: translateY(10px);
}

.db-sample-feature-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.db-sample-feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #ffc107, #dc3545);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.db-sample-feature-highlight:hover::before {
    opacity: 1;
}

.db-sample-feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.db-sample-feature-icon {
    font-size: 3rem;
    color: #0066cc;
    transition: all 0.3s ease;
}

.db-sample-feature-highlight:hover .db-sample-feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: #004499;
}

.db-sample-feature-highlight h5 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.db-sample-feature-highlight p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.suppliers-table-wrapper {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.suppliers-table-wrapper h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.suppliers-table-wrapper .lead {
    color: #6c757d;
    line-height: 1.6;
}

.suppliers-table-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.suppliers-table-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.suppliers-table-header {
    background: linear-gradient(135deg, #e8f5e8 0%, #e3f2fd 100%);
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #dee2e6;
    position: relative;
}

.suppliers-table-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.suppliers-table-header h4 {
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    font-size: 1.25rem;
}

.suppliers-table-header p {
    color: #6c757d;
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
}

.suppliers-table-badge {
    display: flex;
    align-items: center;
}

.suppliers-table-badge .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.suppliers-table-container {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
    position: relative;
}

.suppliers-table {
    margin: 0;
    background: white;
    font-size: 0.9rem;
}

.suppliers-table thead th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    padding: 1rem 0.75rem;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
    text-align: left;
    vertical-align: middle;
}

.suppliers-table thead th i {
    opacity: 0.9;
    margin-right: 0.25rem;
}

.suppliers-table tbody td {
    padding: 0.875rem 0.75rem;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.9rem;
    vertical-align: middle;
    white-space: nowrap;
}

.suppliers-table tbody tr {
    transition: all 0.2s ease;
}

.suppliers-table-row:hover {
    background: #f8f9fa;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.suppliers-table .fw-semibold {
    font-weight: 600;
    color: #0066cc;
}

.suppliers-table a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.suppliers-table a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.suppliers-table a.text-success {
    color: #28a745 !important;
}

.suppliers-table a.text-success:hover {
    color: #1e7e34 !important;
}

.suppliers-table code {
    background: #f8f9fa;
    color: #6c757d;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid #e9ecef;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
}

.suppliers-table .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid transparent;
}

.suppliers-table .bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1) !important;
    color: #0f5132 !important;
    border-color: rgba(25, 135, 84, 0.2);
}

.suppliers-table .bg-info-subtle {
    background-color: rgba(13, 202, 240, 0.1) !important;
    color: #055160 !important;
    border-color: rgba(13, 202, 240, 0.2);
}

.suppliers-table .bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.1) !important;
    color: #664d03 !important;
    border-color: rgba(255, 193, 7, 0.2);
}

.suppliers-table .bg-primary-subtle {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: #052c65 !important;
    border-color: rgba(13, 110, 253, 0.2);
}

.suppliers-table .bg-secondary-subtle {
    background-color: rgba(108, 117, 125, 0.1) !important;
    color: #41464b !important;
    border-color: rgba(108, 117, 125, 0.2);
}

.suppliers-table .bg-danger-subtle {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #58151c !important;
    border-color: rgba(220, 53, 69, 0.2);
}

.suppliers-table-footer {
    background: #f8f9fa;
    padding: 1rem 2rem;
    border-top: 1px solid #dee2e6;
}

.suppliers-quality-indicator,
.suppliers-freshness-indicator {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
}

.suppliers-quality-indicator i,
.suppliers-freshness-indicator i {
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

.suppliers-table-footer small {
    color: #6c757d;
    font-size: 0.8rem;
    font-style: italic;
}

.construction-table-wrapper {
    position: relative;
    background: linear-gradient(135deg, #fff3cd 0%, #ffffff 100%);
}

.construction-table-wrapper h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.construction-table-wrapper .lead {
    color: #6c757d;
    line-height: 1.6;
}

.construction-table-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.construction-table-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.construction-table-header {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #dee2e6;
    position: relative;
}

.construction-table-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.construction-table-header h4 {
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    font-size: 1.25rem;
}

.construction-table-header p {
    color: #6c757d;
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
}

.construction-table-badge {
    display: flex;
    align-items: center;
}

.construction-table-badge .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(253, 126, 20, 0.2);
}

.construction-table-container {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
    position: relative;
}

.construction-table {
    margin: 0;
    background: white;
    font-size: 0.9rem;
}

.construction-table thead th {
    background: #6c3e0a;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    padding: 1rem 0.75rem;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
    text-align: left;
    vertical-align: middle;
}

.construction-table thead th i {
    opacity: 0.9;
    margin-right: 0.25rem;
}

.construction-table tbody td {
    padding: 0.875rem 0.75rem;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.9rem;
    vertical-align: middle;
    white-space: nowrap;
}

.construction-table tbody tr {
    transition: all 0.2s ease;
}

.construction-table-row:hover {
    background: #fff3cd;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.construction-table .fw-semibold {
    font-weight: 600;
    color: #ffc107;
}

.construction-table a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.construction-table a:hover {
    color: #ffc107;
    text-decoration: underline;
}

.construction-table a.text-success {
    color: #28a745 !important;
}

.construction-table a.text-success:hover {
    color: #1e7e34 !important;
}

.construction-table code {
    background: #fff3cd;
    color: #6c757d;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid #e9ecef;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
}

.construction-table .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid transparent;
}

.construction-table .bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1) !important;
    color: #0f5132 !important;
    border-color: rgba(25, 135, 84, 0.2);
}

.construction-table .bg-info-subtle {
    background-color: rgba(13, 202, 240, 0.1) !important;
    color: #055160 !important;
    border-color: rgba(13, 202, 240, 0.2);
}

.construction-table .bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.1) !important;
    color: #664d03 !important;
    border-color: rgba(255, 193, 7, 0.2);
}

.construction-table .bg-primary-subtle {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: #052c65 !important;
    border-color: rgba(13, 110, 253, 0.2);
}

.construction-table .bg-secondary-subtle {
    background-color: rgba(108, 117, 125, 0.1) !important;
    color: #41464b !important;
    border-color: rgba(108, 117, 125, 0.2);
}

.construction-table .bg-danger-subtle {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #58151c !important;
    border-color: rgba(220, 53, 69, 0.2);
}

.construction-table-footer {
    background: #f8f9fa;
    padding: 1rem 2rem;
    border-top: 1px solid #dee2e6;
}

.construction-quality-indicator,
.construction-freshness-indicator {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
}

.construction-quality-indicator i,
.construction-freshness-indicator i {
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

.construction-table-footer small {
    color: #6c757d;
    font-size: 0.8rem;
    font-style: italic;
}

.suppliers-table-container::-webkit-scrollbar,
.construction-table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.suppliers-table-container::-webkit-scrollbar-track,
.construction-table-container::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 4px;
}

.suppliers-table-container::-webkit-scrollbar-thumb {
    background: #c1c8d0;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.construction-table-container::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.suppliers-table-container::-webkit-scrollbar-thumb:hover {
    background: #a8b2bd;
}

.construction-table-container::-webkit-scrollbar-thumb:hover {
    background: #fd7e14;
}

.suppliers-table-container::-webkit-scrollbar-corner,
.construction-table-container::-webkit-scrollbar-corner {
    background: #f1f3f4;
}

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: rgba(0, 102, 204, 0.8);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 1199.98px) {
    .suppliers-table-header,
    .construction-table-header {
        padding: 1.25rem 1.5rem;
    }

    .suppliers-table-footer,
    .construction-table-footer {
        padding: 0.875rem 1.5rem;
    }

    .suppliers-table thead th,
    .suppliers-table tbody td,
    .construction-table thead th,
    .construction-table tbody td {
        padding: 0.75rem 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 991.98px) {
    .db-sample-switcher {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .db-sample-switch-btn {
        min-width: auto;
        width: 100%;
        margin-bottom: 4px;
        padding: 0.875rem 1.5rem;
    }

    .db-sample-switch-btn:last-child {
        margin-bottom: 0;
    }

    .suppliers-table-header,
    .construction-table-header {
        padding: 1rem 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .suppliers-table-header .d-flex,
    .construction-table-header .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .suppliers-table-footer,
    .construction-table-footer {
        padding: 0.75rem 1.25rem;
    }

    .suppliers-table-footer .row,
    .construction-table-footer .row {
        text-align: center;
    }

    .suppliers-table-footer .col-md-4,
    .construction-table-footer .col-md-4 {
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .db-sample-switcher-container {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .db-sample-switcher {
        padding: 6px;
        border-radius: 16px;
    }

    .db-sample-switch-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .db-sample-switch-btn i {
        font-size: 1rem;
        margin-right: 0.4rem;
    }

    .db-sample-feature-highlight {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .db-sample-feature-icon {
        font-size: 2.5rem;
    }

    .suppliers-table-wrapper,
    .construction-table-wrapper {
        padding: 1rem 0;
    }

    .suppliers-table-header,
    .construction-table-header {
        padding: 0.875rem 1rem;
    }

    .suppliers-table-header h4,
    .construction-table-header h4 {
        font-size: 1.1rem;
    }

    .suppliers-table-footer,
    .construction-table-footer {
        padding: 0.75rem 1rem;
    }

    .suppliers-table-footer .d-flex,
    .construction-table-footer .d-flex {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .suppliers-table-container,
    .construction-table-container {
        max-height: 300px;
    }

    .suppliers-table thead th,
    .suppliers-table tbody td,
    .construction-table thead th,
    .construction-table tbody td {
        padding: 0.6rem 0.5rem;
        font-size: 0.8rem;
    }

    .suppliers-table .badge,
    .construction-table .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .db-sample-switcher {
        padding: 4px;
        border-radius: 12px;
    }

    .db-sample-switch-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-radius: 8px;
        min-width: auto;
    }

    .db-sample-switch-btn i {
        font-size: 0.9rem;
        margin-right: 0.3rem;
    }

    .db-sample-feature-highlight {
        padding: 1rem;
        border-radius: 10px;
    }

    .db-sample-feature-icon {
        font-size: 2rem;
    }

    .suppliers-table-header h4,
    .construction-table-header h4 {
        font-size: 1rem;
    }

    .suppliers-table-header p,
    .construction-table-header p {
        font-size: 0.85rem;
    }

    .suppliers-table-badge .badge,
    .construction-table-badge .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .suppliers-table-container,
    .construction-table-container {
        max-height: 250px;
    }

    .suppliers-table thead th,
    .suppliers-table tbody td,
    .construction-table thead th,
    .construction-table tbody td {
        padding: 0.5rem 0.4rem;
        font-size: 0.75rem;
    }

    .suppliers-table code,
    .construction-table code {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

.db-sample-switch-btn:focus-visible {
    outline: 3px solid #0066cc;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(0, 102, 204, 0.2);
}

.suppliers-table:focus,
.construction-table:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

.suppliers-table tbody tr:focus,
.construction-table tbody tr:focus {
    outline: 2px solid #0066cc;
    outline-offset: -2px;
    background: rgba(0, 102, 204, 0.05);
}

@media (prefers-contrast: high) {
    .db-sample-switcher {
        border: 3px solid #000;
        background: #fff;
    }

    .db-sample-switch-btn {
        border: 2px solid #000;
        color: #000;
    }

    .db-sample-switch-btn.active {
        background: #000;
        color: #fff;
        border-color: #000;
    }

    .db-sample-feature-highlight {
        border: 2px solid #000;
    }

    .suppliers-table-card,
    .construction-table-card {
        border: 2px solid #000;
    }

    .suppliers-table thead th,
    .construction-table thead th {
        background: #000;
        color: #fff;
        border: 1px solid #000;
    }

    .suppliers-table tbody td,
    .construction-table tbody td {
        border: 1px solid #000;
    }
}

@media (prefers-reduced-motion: reduce) {
    .db-sample-switch-btn,
    .db-sample-table-wrapper,
    .db-sample-feature-highlight,
    .db-sample-feature-icon,
    .suppliers-table-card,
    .suppliers-table-row,
    .construction-table-card,
    .construction-table-row,
    .scroll-indicator {
        transition: none;
        animation: none;
    }

    .db-sample-switch-btn:hover,
    .db-sample-switch-btn.active,
    .db-sample-feature-highlight:hover,
    .suppliers-table-card:hover,
    .suppliers-table-row:hover,
    .construction-table-card:hover,
    .construction-table-row:hover {
        transform: none;
    }
}

.db-sample-switch-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.db-sample-switch-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.db-sample-switcher.theme-blue-orange .db-sample-switch-btn[data-table="suppliers"].active {
    background: linear-gradient(135deg, #0066cc 0%, #0080ff 100%);
}

.db-sample-switcher.theme-blue-orange .db-sample-switch-btn[data-table="construction"].active {
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    color: #212529;
}

.db-sample-switcher.theme-blue-orange .db-sample-switch-btn[data-table="construction"].active:hover {
    background: linear-gradient(135deg, #ff8f00 0%, #ffc107 100%);
    color: #212529;
}

.db-sample-switcher.compact {
    padding: 4px;
    border-radius: 12px;
}

.db-sample-switcher.compact .db-sample-switch-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    min-width: 150px;
    border-radius: 8px;
}

@media print {
    .db-sample-switcher-container {
        display: none;
    }

    .db-sample-table-wrapper[style*="display: none"] {
        display: none !important;
    }

    .db-sample-feature-highlight {
        border: 1px solid #000;
        background: #fff;
        box-shadow: none;
    }

    .suppliers-table-wrapper,
    .construction-table-wrapper {
        background: #fff;
        page-break-inside: avoid;
    }

    .suppliers-table-card,
    .construction-table-card {
        box-shadow: none;
        border: 2px solid #000;
    }

    .suppliers-table thead th,
    .construction-table thead th {
        background: #f0f0f0 !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
    }

    .suppliers-table .badge,
    .construction-table .badge {
        border: 1px solid #000;
        background: #f0f0f0 !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
    }

    .scroll-indicator {
        display: none;
    }
}

.suppliers-table a,
.construction-table a,
.suppliers-table-wrapper a,
.construction-table-wrapper a,
.db-sample-table-wrapper a {

    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;

    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;

    transition: none !important;

    color: inherit !important;
    font-weight: inherit !important;

    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.suppliers-table a:hover,
.construction-table a:hover,
.suppliers-table-wrapper a:hover,
.construction-table-wrapper a:hover,
.db-sample-table-wrapper a:hover {
    color: inherit !important;
    text-decoration: none !important;
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

.suppliers-table a.text-success,
.construction-table a.text-success {
    color: #6c757d !important;
}

.suppliers-table a.text-success:hover,
.construction-table a.text-success:hover {
    color: #6c757d !important;
}

.suppliers-table a[href^="mailto:"],
.suppliers-table a[href^="http"],
.suppliers-table a[href^="https://"],
.construction-table a[href^="mailto:"],
.construction-table a[href^="http"],
.construction-table a[href^="https://"] {
    color: #6c757d !important;
    text-decoration: none !important;
    pointer-events: none !important;
    cursor: default !important;
}

.suppliers-table a i,
.construction-table a i,
.db-sample-table-wrapper a i {
    color: inherit !important;
    transition: none !important;
    transform: none !important;
}

.suppliers-table a *,
.construction-table a *,
.db-sample-table-wrapper a * {
    pointer-events: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.suppliers-table a,
.construction-table a,
.db-sample-table-wrapper a {

    position: relative;
}

.suppliers-table a::before,
.construction-table a::before,
.db-sample-table-wrapper a::before {
    content: attr(data-nofollow);
    display: none;
}

.suppliers-table a[href],
.construction-table a[href],
.db-sample-table-wrapper a[href] {

    tabindex: -1 !important;
}

.suppliers-table td,
.construction-table td {

    position: relative;
}

@media (max-width: 767.98px) {
    .suppliers-table a,
    .construction-table a,
    .db-sample-table-wrapper a {

        -webkit-touch-callout: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
}

@media print {
    .suppliers-table a,
    .construction-table a,
    .db-sample-table-wrapper a {

        color: #000 !important;
        text-decoration: none !important;
    }

    .suppliers-table a::after,
    .construction-table a::after,
    .db-sample-table-wrapper a::after {
        content: none !important;
    }
}

@media (prefers-contrast: high) {
    .suppliers-table a,
    .construction-table a,
    .db-sample-table-wrapper a {
        color: inherit !important;
        border: none !important;
    }
}

        .suppliers-table .disabled-link,
        .construction-table .disabled-link,
        .db-sample-table-wrapper .disabled-link {
            color: inherit !important;
            text-decoration: none !important;
            cursor: default !important;
            pointer-events: none !important;
        }

        .suppliers-table span[data-nofollow],
        .construction-table span[data-nofollow],
        .db-sample-table-wrapper span[data-nofollow] {
            border-bottom: none !important;
            text-decoration: none !important;
        }

        .suppliers-table .disabled-link::selection,
        .construction-table .disabled-link::selection,
        .db-sample-table-wrapper .disabled-link::selection {
            background: transparent !important;
        }