/**
 * Tools Horizon Pro - Main Public Styles
 * Mobile-first responsive layout system
 * @version 3.0.0
 */

/* ==========================================================================
   BASE & RESET
   ========================================================================== */

.th-wrap,
.th-wrap *,
.th-wrap *::before,
.th-wrap *::after {
    box-sizing: border-box;
}

.th-wrap {
    font-family: var(--th-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--th-text, #1f2937);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.th-wrap a {
    color: var(--th-primary, #667eea);
    text-decoration: none;
}

.th-wrap a:hover {
    text-decoration: underline;
}

.th-wrap img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   TOOL WRAPPER & CONTAINER
   ========================================================================== */

.th-tool-wrapper {
    background: var(--th-bg, #ffffff);
    border-radius: var(--th-radius-lg, 12px);
    box-shadow: var(--th-shadow, 0 1px 3px rgba(0, 0, 0, 0.1));
    overflow: hidden;
    margin-bottom: 32px;
}

.th-tool-wrapper.th-tool-fullwidth {
    border-radius: 0;
    box-shadow: none;
}

.th-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.th-container-narrow {
    max-width: 800px;
}

.th-container-wide {
    max-width: 1400px;
}

@media (min-width: 768px) {
    .th-container {
        padding: 0 24px;
    }
}

/* ==========================================================================
   TOOL HEADER
   ========================================================================== */

.th-tool-header {
    padding: 24px;
    border-bottom: 1px solid var(--th-border, #e5e7eb);
}

.th-tool-header-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .th-tool-header {
        padding: 32px;
    }
    
    .th-tool-header-inner {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
    }
}

.th-tool-header-content {
    flex: 1;
    min-width: 0;
}

.th-tool-header-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--th-gradient);
    border-radius: var(--th-radius-lg, 12px);
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .th-tool-header-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
        margin-bottom: 0;
        margin-right: 24px;
    }
}

.th-tool-header-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.th-tool-title {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--th-text, #1f2937);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .th-tool-title {
        font-size: 1.875rem;
    }
}

.th-tool-subtitle {
    margin: 0;
    font-size: 1rem;
    color: var(--th-text-muted, #6b7280);
    line-height: 1.5;
}

.th-tool-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--th-text-muted, #6b7280);
}

.th-tool-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.th-tool-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ==========================================================================
   TOOL CONTENT AREA
   ========================================================================== */

.th-tool-content {
    padding: 24px;
}

@media (min-width: 768px) {
    .th-tool-content {
        padding: 32px;
    }
}

.th-tool-content-section {
    margin-bottom: 32px;
}

.th-tool-content-section:last-child {
    margin-bottom: 0;
}

.th-section-title {
    margin: 0 0 16px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--th-text, #1f2937);
}

.th-tool-body {
    background: var(--th-bg, #ffffff);
}

.th-tool-sidebar {
    background: var(--th-bg-alt, #f9fafb);
    border-left: 1px solid var(--th-border, #e5e7eb);
    padding: 24px;
}

.th-tool-layout-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 1024px) {
    .th-tool-layout-sidebar {
        grid-template-columns: 1fr 320px;
    }
}

/* ==========================================================================
   TOOL DESCRIPTION
   ========================================================================== */

.th-tool-description {
    padding: 24px;
    background: var(--th-bg-alt, #f9fafb);
    border-top: 1px solid var(--th-border, #e5e7eb);
}

.th-tool-description h2,
.th-tool-description h3,
.th-tool-description h4 {
    margin: 24px 0 12px;
    color: var(--th-text, #1f2937);
}

.th-tool-description h2:first-child,
.th-tool-description h3:first-child,
.th-tool-description h4:first-child {
    margin-top: 0;
}

.th-tool-description p {
    margin: 0 0 16px;
    line-height: 1.7;
}

.th-tool-description ul,
.th-tool-description ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.th-tool-description li {
    margin-bottom: 8px;
}

.th-tool-description-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--th-primary, #667eea);
    cursor: pointer;
    margin-top: 8px;
}

.th-tool-description-content.collapsed {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.th-tool-description-content.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--th-bg-alt, #f9fafb));
    pointer-events: none;
}

/* ==========================================================================
   GRID LAYOUTS
   ========================================================================== */

.th-grid {
    display: grid;
    gap: 24px;
}

.th-grid-1 { grid-template-columns: repeat(1, 1fr); }

.th-grid-2 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
    .th-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.th-grid-3 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
    .th-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .th-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.th-grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 480px) {
    .th-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .th-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .th-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.th-grid-5 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 480px) {
    .th-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .th-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .th-grid-5 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1280px) {
    .th-grid-5 { grid-template-columns: repeat(5, 1fr); }
}

.th-grid-6 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
    .th-grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
    .th-grid-6 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
    .th-grid-6 { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1280px) {
    .th-grid-6 { grid-template-columns: repeat(6, 1fr); }
}

.th-grid-gap-sm { gap: 16px; }
.th-grid-gap-lg { gap: 32px; }
.th-grid-gap-xl { gap: 48px; }

/* ==========================================================================
   ARCHIVE PAGE
   ========================================================================== */

.th-archive {
    padding: 32px 0;
}

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

.th-archive-title {
    margin: 0 0 12px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--th-text, #1f2937);
}

@media (min-width: 768px) {
    .th-archive-title {
        font-size: 2.5rem;
    }
}

.th-archive-description {
    margin: 0 auto;
    max-width: 600px;
    font-size: 1.125rem;
    color: var(--th-text-muted, #6b7280);
    line-height: 1.6;
}

.th-archive-toolbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .th-archive-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.th-archive-toolbar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.th-archive-toolbar-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.th-archive-count {
    font-size: 0.875rem;
    color: var(--th-text-muted, #6b7280);
}

.th-archive-view-toggle {
    display: flex;
    border: 1px solid var(--th-border, #e5e7eb);
    border-radius: var(--th-radius, 8px);
    overflow: hidden;
}

.th-archive-view-toggle button {
    padding: 8px 12px;
    background: var(--th-bg, #ffffff);
    border: none;
    cursor: pointer;
    color: var(--th-text-muted, #6b7280);
    transition: var(--th-transition-fast);
}

.th-archive-view-toggle button:hover {
    background: var(--th-bg-muted, #f3f4f6);
}

.th-archive-view-toggle button.active {
    background: var(--th-primary, #667eea);
    color: #fff;
}

.th-archive-content {
    margin-bottom: 32px;
}

.th-archive-empty {
    text-align: center;
    padding: 64px 24px;
    background: var(--th-bg-alt, #f9fafb);
    border-radius: var(--th-radius-lg, 12px);
}

.th-archive-empty-icon {
    font-size: 48px;
    color: var(--th-text-lighter, #9ca3af);
    margin-bottom: 16px;
}

.th-archive-empty-title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--th-text, #1f2937);
}

.th-archive-empty-message {
    margin: 0;
    color: var(--th-text-muted, #6b7280);
}

/* ==========================================================================
   SEARCH FORM
   ========================================================================== */

.th-search-form {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.th-search-input-wrapper {
    position: relative;
}

.th-search-input {
    width: 100%;
    padding: 12px 48px 12px 16px;
    font-size: 1rem;
    border: 2px solid var(--th-border, #e5e7eb);
    border-radius: var(--th-radius-full, 9999px);
    background: var(--th-bg, #ffffff);
    transition: var(--th-transition-fast);
}

.th-search-input:focus {
    outline: none;
    border-color: var(--th-primary, #667eea);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.th-search-input::placeholder {
    color: var(--th-text-lighter, #9ca3af);
}

.th-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--th-gradient);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: var(--th-transition-fast);
}

.th-search-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

.th-search-clear {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--th-text-lighter, #9ca3af);
    cursor: pointer;
    padding: 4px;
    display: none;
}

.th-search-form.has-value .th-search-clear {
    display: block;
}

.th-search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--th-bg, #ffffff);
    border-radius: var(--th-radius, 8px);
    box-shadow: var(--th-shadow-lg);
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.th-search-form.is-open .th-search-suggestions {
    display: block;
}

.th-search-suggestion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s;
}

.th-search-suggestion:hover {
    background: var(--th-bg-muted, #f3f4f6);
}

.th-search-suggestion-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--th-primary-light);
    border-radius: var(--th-radius, 8px);
    color: var(--th-primary, #667eea);
    flex-shrink: 0;
}

.th-search-suggestion-content {
    flex: 1;
    min-width: 0;
}

.th-search-suggestion-title {
    font-weight: 500;
    color: var(--th-text, #1f2937);
    margin-bottom: 2px;
}

.th-search-suggestion-category {
    font-size: 0.75rem;
    color: var(--th-text-muted, #6b7280);
}

/* ==========================================================================
   FILTER BAR
   ========================================================================== */

.th-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
    background: var(--th-bg-alt, #f9fafb);
    border-radius: var(--th-radius, 8px);
    margin-bottom: 24px;
}

.th-filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.th-filter-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--th-text-muted, #6b7280);
    margin-right: 4px;
}

.th-filter-select {
    padding: 8px 32px 8px 12px;
    font-size: 0.875rem;
    border: 1px solid var(--th-border, #e5e7eb);
    border-radius: var(--th-radius, 8px);
    background: var(--th-bg, #ffffff);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    cursor: pointer;
}

.th-filter-select:focus {
    outline: none;
    border-color: var(--th-primary, #667eea);
}

.th-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.th-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--th-primary-light);
    color: var(--th-primary, #667eea);
    border-radius: var(--th-radius-full, 9999px);
    cursor: pointer;
    transition: var(--th-transition-fast);
}

.th-filter-tag:hover {
    background: var(--th-primary, #667eea);
    color: #fff;
}

.th-filter-tag.active {
    background: var(--th-gradient);
    color: #fff;
}

.th-filter-reset {
    font-size: 0.875rem;
    color: var(--th-text-muted, #6b7280);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    margin-left: auto;
}

.th-filter-reset:hover {
    color: var(--th-danger, #ef4444);
}

/* ==========================================================================
   LOAD MORE
   ========================================================================== */

.th-load-more {
    text-align: center;
    margin: 32px 0;
}

.th-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
}

.th-load-more-btn.loading {
    pointer-events: none;
}

.th-infinite-scroll-trigger {
    height: 1px;
    width: 100%;
}

/* ==========================================================================
   FAVORITES LIST
   ========================================================================== */

.th-favorites-list {
    padding: 24px 0;
}

.th-favorites-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.th-favorites-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--th-text, #1f2937);
}

.th-favorites-count {
    font-size: 0.875rem;
    color: var(--th-text-muted, #6b7280);
}

.th-favorites-empty {
    text-align: center;
    padding: 48px 24px;
    background: var(--th-bg-alt, #f9fafb);
    border-radius: var(--th-radius-lg, 12px);
}

/* ==========================================================================
   TABS
   ========================================================================== */

.th-tabs {
    display: flex;
    flex-direction: column;
}

.th-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--th-border, #e5e7eb);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.th-tabs-nav::-webkit-scrollbar {
    display: none;
}

.th-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--th-text-muted, #6b7280);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: var(--th-transition-fast);
    white-space: nowrap;
}

.th-tab:hover {
    color: var(--th-text, #1f2937);
}

.th-tab.active {
    color: var(--th-primary, #667eea);
    border-bottom-color: var(--th-primary, #667eea);
}

.th-tab-content {
    padding: 24px 0;
}

.th-tab-pane {
    display: none;
    animation: th-fade-in 0.2s ease;
}

.th-tab-pane.active {
    display: block;
}

@keyframes th-fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   ACCORDION
   ========================================================================== */

.th-accordion {
    border: 1px solid var(--th-border, #e5e7eb);
    border-radius: var(--th-radius, 8px);
    overflow: hidden;
}

.th-accordion-item {
    border-bottom: 1px solid var(--th-border, #e5e7eb);
}

.th-accordion-item:last-child {
    border-bottom: none;
}

.th-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--th-text, #1f2937);
    background: var(--th-bg, #ffffff);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.th-accordion-header:hover {
    background: var(--th-bg-muted, #f3f4f6);
}

.th-accordion-icon {
    transition: transform 0.2s;
}

.th-accordion-item.active .th-accordion-icon {
    transform: rotate(180deg);
}

.th-accordion-content {
    display: none;
    padding: 0 20px 20px;
    color: var(--th-text-muted, #6b7280);
    line-height: 1.6;
}

.th-accordion-item.active .th-accordion-content {
    display: block;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.th-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: var(--th-transition);
}

.th-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.th-modal {
    background: var(--th-bg, #ffffff);
    border-radius: var(--th-radius-lg, 12px);
    box-shadow: var(--th-shadow-xl);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(10px);
    transition: var(--th-transition);
}

.th-modal-overlay.active .th-modal {
    transform: scale(1) translateY(0);
}

.th-modal-sm { max-width: 400px; }
.th-modal-lg { max-width: 800px; }
.th-modal-xl { max-width: 1000px; }

.th-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--th-border, #e5e7eb);
}

.th-modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--th-text, #1f2937);
}

.th-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--th-bg-muted, #f3f4f6);
    border: none;
    border-radius: var(--th-radius, 8px);
    cursor: pointer;
    transition: var(--th-transition-fast);
}

.th-modal-close:hover {
    background: var(--th-border, #e5e7eb);
}

.th-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.th-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--th-border, #e5e7eb);
    background: var(--th-bg-alt, #f9fafb);
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */

.th-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100001;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

@media (max-width: 640px) {
    .th-toast-container {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

.th-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--th-bg, #ffffff);
    border-radius: var(--th-radius, 8px);
    box-shadow: var(--th-shadow-lg);
    pointer-events: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: var(--th-transition);
}

.th-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.th-toast-icon {
    flex-shrink: 0;
    font-size: 20px;
}

.th-toast-content {
    flex: 1;
    min-width: 0;
}

.th-toast-message {
    font-size: 0.875rem;
    color: var(--th-text, #1f2937);
    line-height: 1.5;
}

.th-toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--th-text-muted, #6b7280);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.th-toast-success { border-left: 4px solid var(--th-success); }
.th-toast-success .th-toast-icon { color: var(--th-success); }

.th-toast-error { border-left: 4px solid var(--th-danger); }
.th-toast-error .th-toast-icon { color: var(--th-danger); }

.th-toast-warning { border-left: 4px solid var(--th-warning); }
.th-toast-warning .th-toast-icon { color: var(--th-warning); }

.th-toast-info { border-left: 4px solid var(--th-info); }
.th-toast-info .th-toast-icon { color: var(--th-info); }

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.th-text-center { text-align: center; }
.th-text-left { text-align: left; }
.th-text-right { text-align: right; }

.th-mt-0 { margin-top: 0; }
.th-mt-1 { margin-top: 8px; }
.th-mt-2 { margin-top: 16px; }
.th-mt-3 { margin-top: 24px; }
.th-mt-4 { margin-top: 32px; }

.th-mb-0 { margin-bottom: 0; }
.th-mb-1 { margin-bottom: 8px; }
.th-mb-2 { margin-bottom: 16px; }
.th-mb-3 { margin-bottom: 24px; }
.th-mb-4 { margin-bottom: 32px; }

.th-hidden { display: none !important; }

.th-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media print {
    .th-no-print {
        display: none !important;
    }
}
