#blue-dot {
  background-color: #0d1a26;
}

#dark-dot {
  background-color: #1c1c1e;
}

#magnified-qr-code {
  border: 3px solid white;
  border-radius: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-height: 80vh;
  max-width: 80vw;
}

#mint-dot {
  background-color: #1a2b34;
}

#note-textarea {
    width: 100%;
    height: 100px;
    background: #1c1c1e;
    color: white;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 10px;
    margin: 15px 0;
    font-family: inherit;
    resize: none;
}

#orange-dot {
  background-color: #4a5568;
}

.alert-actions {
  display: flex;
  gap: 8px;
}

.alert-btn {
  align-items: center;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: bold;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.alert-buttons {
  display: flex;
  gap: 4px;
}

.alert-count {
  color: var(--text-secondary-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-form {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.alert-form input {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  color: var(--text-color);
  flex-grow: 1;
  font-size: 1rem;
  min-width: 0;
  padding: 6px;
}

.alert-form input[type='number'] {
  appearance: textfield;
}

.alert-form input[type='number']::-webkit-inner-spin-button,
.alert-form input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.alert-list {
  list-style: none;
  margin: 0;
  max-height: 90px;
  overflow-y: auto;
  padding: 0;
}

.alert-list li {
  align-items: flex-start;
  background-color: var(--bg-color);
  border-left: 2px solid var(--primary-color);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  margin-bottom: 4px;
  padding: 6px;
}

.alert-main {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.alert-note {
    display: block;
    width: 100%;
    margin-top: 5px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    color: #8e8e93;
    font-size: 0.85rem;
    font-style: italic;
    border-left: 2px solid var(--orange-accent);
}

.app-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.auth-form {
  background-color: var(--card-color);
  border-radius: 8px;
  box-sizing: border-box;
  max-width: 400px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.auth-form > * {
  position: relative;
  z-index: 1;
}

.auth-form::before {
  background-image: url('../images/icon-256x256.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 100%;
  left: -50%;
  opacity: 0.05;
  position: absolute;
  top: -50%;
  transform: rotate(-30deg);
  width: 100%;
  z-index: 0;
}

.auth-link {
  margin-top: 15px;
  text-align: center;
}

.auth-link a {
  color: var(--primary-color);
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}

.auth-page-wrapper {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  min-height: 100%;
  padding: 15px;
}

.btn {
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  padding: 8px 16px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-large {
  font-size: 1.1rem;
  padding: 12px 24px;
}

.btn-primary {
  background-color: var(--orange-accent);
  color: white;
}

.btn-secondary {
  background-color: var(--grey-overtone);
  color: var(--text-color);
}

.btn:hover {
  opacity: 0.85;
}

.close-card-btn {
  background: none;
  border: none;
  color: var(--text-secondary-color);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 8px;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
}

.controls {
  align-items: center;
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  margin: 0 auto 15px auto;
  max-width: 980px;
  padding: 10px;
  position: relative !important;
  z-index: 2000 !important;
  overflow: visible !important;
}

.controls button {
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  flex-shrink: 0;
}

.controls select {
  min-width: 150px;
}

.controls select,
.controls button {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-color);
  font-size: 1rem;
  padding: 8px;
}

.controls-left {
  flex-grow: 1;
}

.controls-left,
.controls-right {
  align-items: center;
  display: flex;
  gap: 10px;
}

.controls-right {
  flex-shrink: 0;
}

.drag-handle {
  color: var(--text-secondary-color);
  cursor: move;
  font-size: 1.8rem;
  left: 12px;
  padding: 0 5px;
  position: absolute;
  top: 8px;
  touch-action: none;
}

.draggable-source--is-dragging {
  opacity: 0.3;
}

.error {
  color: var(--red-color);
  margin-bottom: 15px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group button {
  background-color: var(--primary-color);
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-weight: 500;
  padding: 10px;
  transition: opacity 0.2s;
  width: 100%;
}

.form-group input {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--text-color);
  padding: 8px;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.header-center {
  text-align: center;
}

.header-left,
.header-right {
  align-items: center;
  display: flex;
  flex: 1;
}

.header-logo {
  margin-bottom: 5px;
  max-width: 80px;
}

.header-right {
  justify-content: flex-end;
  position: relative;
}

.hero-cta {
  animation: fadeIn 1s ease-in-out 1.5s backwards;
}

.hero-section {
  padding: 80px 0;
  text-align: center;
}

.hero-subtitle {
  animation: fadeIn 1s ease-in-out 1s backwards;
  color: var(--text-secondary-color);
  font-size: 1.5rem;
  margin: 0 auto 30px auto;
  max-width: 600px;
}

.hero-title {
  animation: fadeIn 1s ease-in-out 0.5s backwards;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.info-bar {
  align-items: center;
  display: flex;
  gap: 20px;
  margin-top: 15px;
  position: relative !important;
  z-index: 1 !important; /* Lowest priority */
}

.info-bar-right {
  flex-grow: 1;
}

.info-bar-right h4 {
  color: var(--primary-color);
  margin: 0 0 5px 0;
}

.info-bar-right p {
  color: var(--text-secondary-color);
  font-size: 0.9rem;
  margin: 0;
}

.info-qr-code {
  border-radius: 6px;
  cursor: pointer;
  max-width: 80px;
}

.landing-container {
  animation: fadeIn 1s ease-in-out;
  margin: 0 auto;
  max-width: 1100px;
  padding: 20px;
}

.landing-logo {
  align-items: center;
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  gap: 12px;
}

.landing-logo img {
  max-height: 40px;
}

.landing-nav {
  display: flex;
  gap: 10px;
}

.logo {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 150px;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  font-size: 2.2rem;
  padding: 0 5px;
}

.menu-divider {
  background-color: var(--border-color);
  height: 1px;
  margin: 8px 0;
}

.menu-dropdown {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: none;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 200px;
  z-index: 5000;
}

.menu-dropdown a {
  border-radius: 4px;
  color: var(--text-color);
  display: block;
  padding: 8px 10px;
  text-decoration: none;
}

.menu-dropdown a:hover {
  background-color: var(--bg-color);
}

.menu-dropdown.show {
  display: block;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none; /* Controlled by JS */
    justify-content: center;
    align-items: center;
    z-index: 1000000 !important; /* Above everything */
}

.modal-overlay.show {
  display: flex;
}

.note-btn {
  color: var(--text-secondary-color);
}

.note-btn,
.remove-alert {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.note-btn:hover {
  color: var(--primary-color);
}

.note-modal {
    background: #2c2c2e;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.note-modal h3 { color: var(--orange-accent); margin-top: 0; }

.note-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.page-header {
  margin-bottom: 40px;
  text-align: center;
}

.page-header .subtitle {
  color: var(--text-secondary-color);
  font-size: 1rem;
  margin: 0;
}

.page-header h1 {
  margin-bottom: 10px;
  margin-top: 0;
}

.plan {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  transition: transform 0.2s, border-color 0.2s;
  width: 210px;
}

.plan .price {
  color: var(--text-color);
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan .price span {
  color: var(--text-secondary-color);
  font-size: 0.5em;
  font-weight: 400;
}

.plan button,
a.btn.btn-primary {
  background-color: var(--primary-color);
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  margin-top: auto;
  transition: opacity 0.2s;
}

.plan button:hover,
a.btn.btn-primary:hover {
  opacity: 0.8;
}

.plan h2 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: 0 0 8px 0;
}

.plan ul {
  flex-grow: 1;
  list-style: none;
  margin: 15px 0;
  padding: 0;
  text-align: left;
}

.plan ul li {
  font-size: 0.9rem;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.plan ul li::before {
  color: var(--green-color);
  content: '✔';
  left: 0;
  position: absolute;
}

.plan.popular {
  border: 2px solid var(--primary-color);
  position: relative;
}

.plan.popular::before {
  background-color: var(--primary-color);
  border-radius: 12px;
  color: white;
  content: 'MOST POPULAR';
  font-size: 0.75rem;
  font-weight: bold;
  left: 50%;
  padding: 4px 8px;
  position: absolute;
  top: -12px;
  transform: translateX(-50%);
}

.plan:hover {
  transform: translateY(-4px);
}

.price-card {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-sizing: border-box;
  padding: 15px;
  position: relative;
  transition: opacity 0.2s;
}

.price-card .price {
  background-color: var(--bg-color);
  border-radius: 4px;
  color: var(--text-color);
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 8px;
  text-align: center;
}

.price-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: 0 0 8px 0;
  padding-left: 42px;
}

.price-card h4 {
  color: var(--text-secondary-color);
  font-size: 1rem;
  margin: 12px 0 8px 0;
}

.price-down {
  color: var(--red-color);
}

.price-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  z-index: 10; /* Lowest level */
}
 
.price-up {
  color: var(--green-color);
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.qr-code-container {
  text-align: center;
}

.qr-magnify-text {
  color: var(--text-secondary-color);
  font-size: 0.8rem;
  font-style: italic;
  margin: 5px 0 0 0;
}

.remove-alert {
  color: var(--red-color);
  font-weight: bold;
}

.sub-info {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.success {
  color: var(--green-color);
  margin-bottom: 15px;
  text-align: center;
}

.theme-dot {
  border: 2px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  width: 24px;
}

.theme-dot.active {
  border-color: var(--primary-color);
}

.theme-options {
  display: flex;
  justify-content: space-around;
}

.theme-selector {
  padding: 0 10px;
}

.theme-selector h4 {
  color: var(--text-secondary-color);
  font-size: 0.9rem;
  margin: 0 0 8px 0;
}

.ticker {
  animation: scroll-left 40s linear infinite;
  display: flex;
  width: 200%;
}

.ticker-item {
  align-items: center;
  color: var(--text-secondary-color);
  display: flex;
  font-size: 1.2rem;
  font-weight: 500;
  gap: 10px;
  padding: 0 30px;
  white-space: nowrap;
}

.ticker-item span {
  font-weight: bold;
}

.tier-badge {
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 4px 8px;
  text-transform: uppercase;
}

.tier-elite {
  background-color: #7b34dd;
  color: white;
}

.tier-free {
  background-color: #4a5568;
  color: white;
}

.tier-pro {
  background-color: #dd6b20;
  color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.landing-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    padding: 10px 0;
    /* This ensures it doesn't get pushed off screen */
    position: relative; 
    clear: both;
}

:root {
  --green-color: #30d158;
  --grey-overtone: #374151;
  --orange-accent: #f59e0b;
  --primary-color: #007aff;
  --red-color: #ff453a;
  --text-secondary-color: #8e8e93;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
        Helvetica, Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
  padding: 15px;
  transition: background-color 0.3s, color 0.3s;
}

body.theme-blue {
  --bg-color: #0d1a26;
  --border-color: #2a4158;
  --card-color: #172a3a;
  --text-color: #d0d8e0;
}

body.theme-dark {
  --bg-color: #1c1c1e;
  --border-color: #3a3a3c;
  --card-color: #2c2c2e;
  --text-color: #f2f2f7;
}

body.theme-mint {
  --bg-color: #1a2b34;
  --border-color: #3a506b;
  --card-color: #253945;
  --primary-color: #76d7c4;
  --text-color: #dde5ec;
}

body.theme-orange {
  --bg-color: #2d3748;
  --border-color: #718096;
  --card-color: #4a5568;
  --primary-color: var(--orange-accent);
  --text-color: #e2e8f0;
}

body.with-bg-image .auth-form {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(
        145deg,
        rgba(55, 65, 81, 0.3),
        rgba(17, 24, 39, 0.4)
    );
  border: 1px solid rgba(58, 58, 60, 0.5);
}

body.with-bg-image .plan {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(44, 44, 46, 0.3);
  border: 1px solid rgba(58, 58, 60, 0.5);
}

body.with-bg-image .price-card,
body.with-bg-image .controls {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(44, 44, 46, 0.3);
  border: 1px solid rgba(58, 58, 60, 0.5);
}

body.with-bg-image.theme-dark,
body.with-bg-image.theme-orange,
body.with-bg-image.theme-blue,
body.with-bg-image.theme-mint {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../images/background.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

h1 {
  font-size: 1.8em;
  margin: 0;
}

html,
body {
  height: 100%;
}
/* Price Change Animations */
.price-up-flash {
    color: #30d158 !important;
    transition: color 0.2s ease;
}

.price-down-flash {
    color: #ff453a !important;
    transition: color 0.2s ease;
}

.price-neutral {
    color: var(--text-color) !important;
    transition: color 1s ease;
}
/* --- Optimized Cookie Banner (Mobile Fix) --- */
/* --- Floating Centered Cookie Card --- */
.cookie-card {
    position: fixed;
    /* Lifted 20px from the bottom */
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%); /* Centers it exactly */
    
    /* Responsive Width: 100% minus 40px total margin (20px each side) */
    width: calc(100% - 40px);
    max-width: 450px; /* Limits size on desktop */
    
    background: rgba(30, 30, 32, 0.98); 
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 16px; 
    padding: 25px;
    z-index: 1000000;
    
    display: none; /* Managed by JS */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    text-align: center;
    box-sizing: border-box;
}

.cookie-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.cookie-card button {
    background-color: var(--orange-accent) !important;
    color: #fff !important;
    border: none !important;
    width: 100%; /* Full width button inside the card */
    padding: 14px 0 !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.cookie-card button:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}
/* --- Custom Dropdown Component --- */
.custom-dropdown {
    position: relative;
    display: inline-block;
    width: 220px;
    z-index: 9999; /* Higher than price cards */
}

.dropdown-toggle {
    width: 100%;
    padding: 10px 15px;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background: rgba(28, 28, 30, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: none; /* Controlled by JS */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1002;
}

.dropdown-menu.show {
    display: block;
}

.menu-group {
    padding: 10px 15px 5px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--orange-accent);
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--text-color);
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.menu-item:hover {
    background: rgba(255,255,255,0.05);
}

.menu-item input {
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--orange-accent); /* Makes checkbox orange */
}/* 1. Set the Z-Index layers */

/* 2. DROPDOWN MENU FIX */
#dropdown-menu-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background-color: #1c1c1e !important; /* Solid background */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    padding: 15px;
    margin-top: 5px;
    z-index: 999999 !important; /* Absolute priority */
}

#dropdown-menu-list.show {
    display: block !important;
}

/* 3. DRAGGING FIX: Maintain width on PC and Mobile */
.draggable-mirror {
    width: 320px !important; /* Hardcoded width for the moving "ghost" card */
    max-width: 90vw !important;
    height: auto !important;
    z-index: 1000000 !important;
    opacity: 0.9;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}
/* --- Global Footer --- */
/* --- Global Footer Styling --- */
.site-footer {
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 20px auto; /* Centered with space above */
    padding: 20px 0;
    text-align: center; /* Centers the text */
    border-top: 1px solid var(--border-color);
    clear: both;
}

.site-footer p {
    margin: 5px 0;
    color: var(--text-secondary-color);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* --- Centralized Content Pages (About / How To) --- */
.page-center-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers items horizontally */
    justify-content: center;
    min-height: 80vh;
    padding: 20px;
    text-align: center; /* Centers text inside blocks */
}

.content-card {
    max-width: 750px;
    width: 100%;
    background: rgba(44, 44, 46, 0.4); /* Matches card transparency */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    margin-bottom: 30px;
}

.content-card h2 {
    color: var(--orange-accent);
    font-size: 2rem;
    margin-bottom: 25px;
}

.content-card h3 {
    color: var(--text-color);
    margin-top: 30px;
}

.content-card p {
    color: var(--text-secondary-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Steps for How-To Page */
.step-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--orange-accent);
    text-align: left; /* Keep instructions left-aligned for readability */
}
.how-to-step {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--orange-accent);
}
/* --- Triggered Alert Styling --- */
.alert-list li.triggered {
    border-left: 2px solid #555 !important; /* Grey border instead of orange/blue */
    background-color: rgba(255, 255, 255, 0.05) !important;
    opacity: 0.5; /* Makes it look faded */
}

.alert-list li.triggered span {
    text-decoration: line-through; /* Crossed out price */
    color: #8e8e93;
}

.alert-list li.triggered .alert-note {
    color: #555;
}
/* Success Banner Styling */
.success-banner {
    background: var(--green-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-out;
}

.banner-message {
    font-weight: 500;
    flex-grow: 1;
    text-align: center;
}

.close-banner-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0 0 0 15px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

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