* {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

:root {
  /* Charcoal Theme (Default) */
  --bg-primary: #1a1a1d;
  --bg-secondary: #2d2d30;
  --bg-tertiary: #3e3e42;
  --text-primary: #e8e8e8;
  --text-secondary: #b8b8b8;
  --accent-primary: #6c9bcf;
  --accent-hover: #8ab4d8;
  --border-color: #4a4a4e;
  --input-bg: #252529;
}

/* Ember Theme - Magma and obsidian */
body[data-theme="ember"] {
  --bg-primary: #0f0907;
  --bg-secondary: #1a1210;
  --bg-tertiary: #2b1e1a;
  --text-primary: #f5d5c8;
  --text-secondary: #c49a88;
  --accent-primary: #e63946;
  --accent-hover: #ff4d5a;
  --border-color: #3d2520;
  --input-bg: #14100d;
}

/* Rune Theme - Deep purple mystical */
body[data-theme="rune"] {
  --bg-primary: #14121a;
  --bg-secondary: #1f1d2b;
  --bg-tertiary: #2d2a3d;
  --text-primary: #e4dff7;
  --text-secondary: #b5adc9;
  --accent-primary: #8b7bc4;
  --accent-hover: #a594d4;
  --border-color: #3d3850;
  --input-bg: #1a1824;
}

/* Aurora Theme - Cool cyan/teal */
body[data-theme="aurora"] {
  --bg-primary: #0f1419;
  --bg-secondary: #1a2430;
  --bg-tertiary: #263545;
  --text-primary: #dff3f7;
  --text-secondary: #a8c5cd;
  --accent-primary: #4ecdc4;
  --accent-hover: #6dddd5;
  --border-color: #334c5c;
  --input-bg: #151e26;
}

/* Mirage Theme - Sunny desert with colorful bedouin markets */
body[data-theme="mirage"] {
  --bg-primary: #faf6f0;
  --bg-secondary: #f0e8dc;
  --bg-tertiary: #e5d9c8;
  --text-primary: #2d2416;
  --text-secondary: #5c4a32;
  --accent-primary: #d97742;
  --accent-hover: #c45a28;
  --border-color: #d4c4b0;
  --input-bg: #f5ede0;
}

/* Omega Theme - Palatial white marble with gold treasures */
body[data-theme="omega"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-tertiary: #efefef;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --accent-primary: #d4af37;
  --accent-hover: #e6c24a;
  --border-color: #d9d9d9;
  --input-bg: #fafafa;
}

body {
  color: var(--text-primary);
  margin: 0;
}

.top-bar {
  background: none;
  padding: 8px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  margin-bottom: 0px;
}

.login-container {
  display: flex;
  align-items: center;
  gap: 0;
}



.new-list-btn {
  width: 100%;
  background: var(--accent-primary);
  color: var(--text-primary);
  border-radius: 2px;
  cursor: pointer;
  border: none;
  margin-bottom: 7px;
  padding: 9px;
}

.new-list-btn:hover {
  background: var(--accent-hover);
}

.main {
  display: flex;
  height: calc(100vh - 40px);
  overflow-x: auto;
  padding: 5px;
}

.columns-container {
  display: flex;
  flex-shrink: 0;
}

.column, .tasklist-titles-column {
  background: var(--bg-secondary);
  padding: 10px;
  padding-top: 6px;
  min-width: 240px;
  margin-right: 5px;
  border-radius: 5px;
  flex-shrink: 0;
}

.tag-pill {
  display: inline-block;
  padding: 5px 10px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  margin: 3px;
  border-radius: 15px;
  cursor: pointer;
  user-select: none;
}

.tag-pill.active {
  background: var(--accent-primary);
  color: var(--text-primary);
}

.tag-pill .remove-tag {
  margin-left: 5px;
  cursor: pointer;
  color: var(--accent-hover);
}

.tasklist {
  flex: 1;
  background: var(--bg-secondary);
  padding: 10px;
  border-radius: 5px;
  min-width: 300px;
}

.settings-icon {
  color: var(--text-primary);
  cursor: pointer;
  margin-right: 12px;
  opacity: 0.8;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

.settings-icon:hover {
  opacity: 1;
}

.settings-pane {
  flex: 1;
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 5px;
  min-width: 300px;
  position: relative;
  overflow-y: auto;
  max-height: 100%;
}

.settings-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0;
}

.settings-close-btn:hover {
  opacity: 1;
}

.themes-section {
  margin-bottom: 20px;
}

.themes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 10px 0;
}

.themes-header h3 {
  margin: 0;
}

.themes-header .icon {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.themes-content {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 500px;
  opacity: 1;
}

.themes-content.collapsed {
  max-height: 0;
  opacity: 0;
}

.theme-option {
  padding: 15px;
  background: var(--bg-tertiary);
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-option:hover {
  border-color: var(--accent-primary);
}

.theme-option.active {
  border-color: var(--accent-primary);
  background: var(--bg-secondary);
}

.theme-preview {
  display: flex;
  gap: 8px;
}

.theme-color {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-input {
  min-height: 24px;
  border: none;
  padding: 3px;
  margin-bottom: 10px;
  outline: none;
  color: var(--text-primary);
  margin-top: 4px;
  border-radius: 5px;
}

.tags-input:focus {
  background-color: var(--input-bg);
}

.tasklist-tasks {
  width: 100%;
  height: 200px;
  background: transparent;
  color: var(--text-primary);
  border: none;
  padding: 5px;
  border-radius: 5px;
  outline: none;
}

.tasklist-tasks:focus {
  background: var(--input-bg);
}



.main {
  display: flex;
  height: calc(100vh - 40px);
  overflow-x: auto;
}

.columns-container {
  display: flex;
  flex-shrink: 0; /* columns take only as much space as needed */
}

.tasklists-container {
  flex: 1; /* takes all remaining horizontal space */
  display: flex;
  flex-direction: column;
}

.tasklist input {
    color: var(--text-primary);
    border: none;
    padding: 5px;
    border-radius: 5px;
    outline: none;
    width: 100%;
}


.columns-container {
    display: flex;
    overflow-x: auto; /* horizontal scroll if too many columns */
}

.column {
    max-width: 12.5vw; /* 10% of viewport width */
    min-width: 12.5vw; /* ensure consistent width */
    overflow-y: auto; /* vertical scroll if content overflows */
    padding: 10px;
    padding-top: 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 4px; /* spacing between tag pills */
}

.tag-pill {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}


/* Task row layout */
.task-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    flex-wrap: nowrap;
}

/* Left-aligned task text */
.task-row-text {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Task extras container - don't shrink */
.task-extra {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Right-aligned trash button */
.task-row-delete, .list-delete {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 6px;
}


/* Make the tasklist pane a vertical flex container */
.tasklist {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* "Enter tasks here" should be very small */
.tasklist-tasks {
    flex: 0 0 auto;
    height: 2.2rem;        /* small height */
    resize: none;          /* prevent resizing */
    margin-bottom: 6px;
}




/* Show placeholder when tags-input is empty */
.tags-input:empty::before {
    content: "enter tags for this list";
    color: #666;            /* matches dark theme style */
    pointer-events: none;
}




/* Editable task name */
.task-detail-name {
    background-color: #333;
    color: #eee;
    border: 1px solid #555;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
}

/* Editable task description */
.task-detail-description {
    flex: 1;
    background-color: var(--input-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 5px;
    resize: none;
    outline: none;
}


/* Modal overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal box */
.modal-box {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 20px;
    border-radius: 10px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

/* Modal buttons container */
.modal-btn-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Modal buttons */
.modal-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.modal-btn.cancel {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.modal-btn.confirm {
    background: var(--accent-primary);
    color: var(--text-primary);
}

.modal-btn:hover {
    opacity: 0.9;
}

html {
  background: #000000;
}

body {
    /* Background image set dynamically by theme JS */
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}

.tasklist-title {
  border: none;
}

/* Add "Tags" label to all columns except tasklist-titles and tag-column (tag-column uses JS header) */
.column:not(.tasklist-titles-column):not(.tag-column)::before {
    content: "Tags";
    display: block;
    font-size: 14px;
    padding: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
}

/* Tag column header (created via JS to support checkbox) */
.tag-column-header {
    position: relative;
    font-size: 14px;
    padding: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-align: center;
}

.tag-column-header .clear-all-tags-checkbox {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Add "Pages" label to tasklist-titles column */
.tasklist-titles-column::before {
    content: "Lists";
    display: block;
    font-size: 14px;
    padding: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
}


.tasklist-title{
  font-size: 44px;
}

.tasklist-title {
    background-color: transparent;
    color: var(--text-primary);
}

.tasklist-title:focus {
    background-color: var(--input-bg);
}

.main, body {
  overflow-y: hidden;
}

.tasklist, .column, .tasklist-titles-column {
  margin-bottom: 18px;
}

.tasklist {
    overflow-y: hidden;

}


/* Container for task-items and task-detail-pane */
.task-content-container {
    flex: 1 1 auto;
    display: flex;
    gap: 10px; /* This creates the margin between task-items and detail pane */
    overflow: hidden;
    min-height: 0; /* Important for flex overflow */
}

/* Task items - will shrink when detail pane appears */
.task-items {
    flex: 1 1 auto;
    overflow-y: auto;
    transition: flex 0.3s ease;
    min-width: 0; /* Allow flex item to shrink below content size */
}

/* Task detail pane */
.task-detail-pane {
    flex: 0 0 350px; /* Fixed width, adjust as needed */
    background-color: var(--bg-tertiary);
    border-left: 1px solid var(--border-color);
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    color: var(--text-primary);
    overflow-y: auto;
}


/* Container for task-items and task-detail-pane */
.task-content-container {
    flex: 1 1 auto;
    display: flex;
    gap: 10px;
    overflow: hidden;
    min-height: 0;
}

/* Task items - will shrink when detail pane appears */
.task-items {
    flex: 1 1 auto;
    overflow-y: auto;
    transition: flex 0.3s ease;
    min-width: 0;
}

/* Task detail pane */
.task-detail-pane {
    flex: 0 0 350px;
    background-color: var(--bg-tertiary);
    border-left: 1px solid var(--border-color);
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    color: var(--text-primary);
    overflow-y: auto;
}

.tag-pill.disabled {
    opacity: 0.3;
}

textarea:focus {
  outline: none;
}


.tasklist-tasks {
    flex: 0 0 auto;
    height: 2.2rem;
    resize: none;
    margin-bottom: 6px;
    box-sizing: border-box; /* ADD THIS - matches tags-input */
    width: 100%; /* Ensure it uses full width like tags-input */
}


/* Task type buttons */
.task-type-buttons {
    display: flex;
    gap: 5px;
    margin-left: auto;
    margin-right: 10px;
    color: var(--text-primary);
}

.icon {
    color: var(--text-primary);
}

.task-type-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.4;
    transition: opacity 0.2s;
    position: relative;
}

.task-type-btn.active {
    opacity: 1;
}

.task-type-btn:hover {
    opacity: 0.99;
}

.task-type-btn.active:hover {
    opacity: 1;
}

/* Popover */
.task-type-popover {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 8px 12px;
    margin-top: 5px;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.task-type-btn:hover .task-type-popover {
    opacity: 1;
}

.one-and-done-stats:hover .task-type-popover {
    opacity: 1;
}

.task-type-popover-title {
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 12px;
    color: var(--text-primary);
}

.task-type-popover-desc {
    font-size: 11px;
    color: var(--text-secondary);
}


.task-type-buttons {
    display: flex;
    gap: 4px;
    overflow: hidden;
}

.task-type-wrapper {
    width: 0px;
    overflow: hidden;
    transition: width 0.25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Active emoji gets full width ALWAYS */
.task-type-btn.active {
    /* Make the button visually active if you want */
    transform: scale(1.1);
}

/* The wrapper containing the active button gets width */
.task-type-wrapper:has(.task-type-btn.active) {
    width: 40px;   /* <— change to whatever width you want */
}

/* When hovering the parent container */
.task-type-buttons:hover .task-type-wrapper {
    width: 40px;   /* All expand */
}

/* Except: the active one already has width, but doubling won't break */
.task-type-buttons:hover .task-type-wrapper:has(.task-type-btn.active) {
    width: 40px;
}






/* Non-active emojis fade out when not hovered */
.task-type-buttons:not(:hover) .task-type-btn:not(.active) {
    opacity: 0;
}

/* On hover: all buttons fade in */
.task-type-buttons:hover .task-type-btn:has(.task-type-btn.active) {
    opacity: .4;
}


.task-type-tip{
  text-align: right;
  color: #ccc;
}

.task-type-tip {
  display: none;
}


.tasklist:has(.task-type-btn.one-and-done:hover) .task-type-tip.one-and-done {
  display: block;
}

.tasklist:has(.task-type-btn.frequency-based:hover) .task-type-tip.freq-based {
  display: block;
}

.tasklist:has(.task-type-btn.oldest-first:hover) .task-type-tip.oldest-first {
  display: block;
}

.tasklist:has(.task-type-btn.free-form:hover) .task-type-tip.free-form {
  display: block;
}

.tasklist:has(.one-and-done-stats:hover) .task-type-tip.one-and-done-stats {
  display: block;
}


.task-type-tip-holder {
  min-height: 44px;
}

.task-complete-btn, .task-move-top-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0 6px;
}


.frequency-label {
  color: var(--text-secondary);
}



/* Hide everything except the task title */
.task-row .task-extra {
    opacity: 0;
    pointer-events: none;
}

.task-row:hover {
  background-color: var(--bg-tertiary);
}

/* Show extra controls on hover */
.task-row:hover .task-extra {
    opacity: 1;
    pointer-events: auto;
}






/* Limit Popover Overlay */
.limit-popover-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.limit-popover {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: popoverSlideIn 0.3s ease-out;
}

@keyframes popoverSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.limit-popover p {
    margin: 0;
    color: var(--text-primary);
}

.premium-link-btn:hover {
    background: var(--accent-hover) !important;
}

.tasklist-title-entry{
  padding: 4px;
  padding-bottom: 6px;
  margin-bottom: 2px;
  position: relative;
}

.tasklist-title-entry::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.tasklist-title-entry:last-child::after {
  display: none;
}

.tasklist-title-entry.before-separator::after {
  display: none;
}

/* Mobile Lists Button */
.mobile-lists-btn {
  display: none;
  background: var(--accent-primary);
  color: var(--text-primary);
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 10px;
  transition: background 0.2s;
}

.mobile-lists-btn:hover {
  background: var(--accent-hover);
}

/* Mobile Sidebar Overlay */
.mobile-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.mobile-sidebar-overlay.active {
  display: block;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 1000;
  transition: left 0.3s ease;
  display: flex;
  padding: 5px;
  box-sizing: border-box;
  gap: 5px;
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-sidebar-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.mobile-sidebar-close-btn:hover {
  opacity: 1;
}

.mobile-sidebar-close-btn .icon {
  width: 24px;
  height: 24px;
}

/* iPad landscape breakpoint: 1024px */
@media (max-width: 1024px) {
  /* Show mobile lists button */
  .mobile-lists-btn {
    display: block;
  }

  /* Hide columns in main on mobile (they'll be moved to sidebar) */
  .main > .columns-container,
  .main > .tasklist-titles-column {
    display: none !important;
  }

  /* Make tasklists container take full width */
  .tasklists-container {
    width: 100%;
    margin-right: 0;
  }

  /* When columns are in mobile sidebar, make them take equal width */
  .mobile-sidebar .columns-container {
    flex: 1;
    max-width: none;
    min-width: 0;
    display: flex;
  }

  .mobile-sidebar .tasklist-titles-column {
    flex: 1;
    max-width: none;
    min-width: 0;
  }

  .mobile-sidebar .column {
    flex: 1;
    max-width: none;
    min-width: 0;
  }

  /* Always show task row buttons on mobile (no hover needed) */
  .task-row .task-extra {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Smaller font size for tasklist title on mobile */
  .tasklist-title {
    font-size: 24px;
  }

  /* Disable hover-based task type expansion on mobile - use tap instead */
  .task-type-buttons:hover .task-type-wrapper {
    width: 0px; /* Don't auto-expand on hover */
  }
  .task-type-buttons:hover .task-type-wrapper:has(.task-type-btn.active) {
    width: 44px; /* Keep active one visible */
  }

  /* When expanded via JS on mobile */
  .task-type-buttons.mobile-expanded .task-type-wrapper {
    width: 44px !important;
  }

  /* Disable hover-based tooltips on mobile */
  .tasklist:has(.task-type-btn.one-and-done:hover) .task-type-tip.one-and-done,
  .tasklist:has(.task-type-btn.frequency-based:hover) .task-type-tip.freq-based,
  .tasklist:has(.task-type-btn.oldest-first:hover) .task-type-tip.oldest-first,
  .tasklist:has(.task-type-btn.free-form:hover) .task-type-tip.free-form {
    display: none;
  }

  /* Show tooltip via JS class on mobile */
  .task-type-tip.mobile-visible {
    display: block !important;
  }

  /* Keep non-active buttons visible when expanded on mobile */
  .task-type-buttons.mobile-expanded .task-type-btn:not(.active) {
    opacity: 0.4 !important;
  }

  /* Task detail pane - full screen on mobile (below top bar) */
  .task-detail-pane {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 60px);
    max-height: calc(100% - 60px);
    flex: none;
    border-left: none;
    border-radius: 0;
    z-index: 1000;
    padding: 20px;
  }

  /* Increase save button height on mobile */
  .task-detail-pane button {
    padding: 12px 16px;
    font-size: 16px;
    height: auto;
    min-height: 48px;
  }

  /* Task content container - allow detail pane to expand */
  .task-content-container {
    position: relative;
  }
}

.tag-column {
        min-width: 10vw; /* 10% of viewport width */
        max-width: 10vw; /* 10% of viewport width */
}

.tasklist-titles-column {
        min-width: 14vw; /* 10% of viewport width */
        max-width: 14vw; /* 10% of viewport width */
}

.free-form-notes {
    flex: 1 1 auto;
    margin-top: 10px;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
    overflow-y: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.free-form-notes:focus {
    border: none;
    outline: none;
}

.free-form-notes:empty::before {
    content: attr(placeholder);
    color: var(--text-secondary);
    opacity: 0.6;
    pointer-events: none;
}
