/* ========================================
   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;
  }
}
