:root {
  --primary-color: #0666eb;
  --primary-light: #e6f0ff;
  --success-color: #20d167;
  --warning-color: #ff9600;
  --danger-color: #ff2e63;
  --neutral-color: #6b7280;
  --text-dark: #111827;
  --text-medium: #4b5563;
  --text-light: #9ca3af;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --modal-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

html {
  font-size: 90%; /* Make everything approximately 10% smaller */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
}

/* Root layout adjustments for fixed header and footer */
html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.app-header {
  background-color: white;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.app-header h1 {
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.header-subtitle {
  color: var(--text-medium);
  margin-top: 0.5rem;
}

.app-content {
  flex: 1;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-footer {
  background-color: white;
  padding: 1rem;
  text-align: center;
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
  position: sticky;
  bottom: 0;
  z-index: 10;
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.dashboard-right {
  display: flex;
  align-items: center;
}

.status-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--surface-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.clear-purchases-btn {
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  white-space: nowrap;
  width: 100%;
  margin-top: 0.5rem;
}

.config-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 1.5rem 0;
  width: 100%;
}

.clear-purchases-btn:hover {
  background-color: #d32f2f;
}

.clear-purchases-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.product-status-card {
  display: flex;
  align-items: center;
  background-color: var(--surface-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  font-size: 0.9rem;
  color: var(--text-dark);
}

.logout-button {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-medium);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: visible;
  margin-right: 0.75rem;
  text-decoration: none;
}

.logout-button:hover {
  background-color: #fff1f1;
  color: var(--danger-color);
  border-color: var(--danger-color);
}

.logout-button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.notification-button {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-medium);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: visible;
  margin-right: 0.75rem;
}

.notification-button:hover {
  background-color: #f1f3f5;
  color: var(--text-dark);
}

.notification-button.active {
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.notification-button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--neutral-color);
  margin-right: 0.75rem;
}

.status-indicator.active {
  background-color: var(--success-color);
}

.status-text {
  font-weight: 500;
}

/* Products Container */
.products-container {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: rgba(249, 250, 251, 0.5);
  margin-bottom: 1rem;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  min-height: 0; /* This is important for flexbox to allow container to shrink */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.products-container::-webkit-scrollbar {
  display: none;
}

/* Shop Filter Bar */
.shop-filter-bar {
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  margin-bottom: 1rem;
    padding: 1rem 1.5rem;
}

.shop-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shop-filter-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.9rem;
}

.shop-filter-item:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-color);
}

.shop-filter-item.selected {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.shop-name {
  font-weight: 500;
  white-space: nowrap;
}

.shop-filter-item.selected .shop-name {
  color: white;
}

.shop-count {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.shop-filter-item:not(.selected) .shop-count {
  background-color: var(--text-light);
  color: white;
}

.no-shops-message {
  text-align: center;
  color: var(--text-medium);
  font-style: italic;
  padding: 1rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 1rem;
}

.product-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-store {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.125rem;
}

.product-timestamp {
  font-size: 0.75rem;
  color: var(--text-light);
}

.product-content {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.product-main-info {
  display: flex;
  flex-direction: column;
  min-width: 0; /* Helps with text overflow */
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  color: var(--text-dark);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.product-ean {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.product-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.price-block {
  border-left: 4px solid var(--border-color);
  padding-left: 1rem;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 0.25rem;
}

.price-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.price-value span {
  font-size: 0.85rem;
  font-weight: normal;
  color: var(--text-medium);
}

.product-costs {
  display: flex;
  flex-direction: column;
}

.cost-header {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.product-profit-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 8px;
}

.product-profit {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.profit-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.profit-positive {
  color: var(--success-color);
}

.profit-negative {
  color: var(--danger-color);
}

.product-info {
  margin-top: 1rem;
}

.product-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.product-label {
  color: var(--text-medium);
}

.product-value {
  font-weight: 500;
}

.product-sales {
  display: flex;
  flex-direction: column;
}

.sales-header {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.sales-grid {
  width: 100%;
}

.sales-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.sales-row:last-child {
  border-bottom: none;
}

.sales-row.header {
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-color);
}

.sales-label {
  color: var(--text-medium);
}

.sales-value {
  font-weight: 500;
  text-align: center;
}

.no-sales-data {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-light);
  font-style: italic;
}

.profit-breakdown {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.breakdown-item {
  color: var(--text-medium);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.breakdown-item.total-cost {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--text-dark);
}

.product-costs .product-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.product-costs .product-row:last-child {
  border-bottom: none;
}

.product-costs .product-label {
  color: var(--text-medium);
}

.product-costs .product-value {
  font-weight: 500;
}

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
  background-color: white;
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--text-medium);
}

/* Modal */
.product-detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background-color: white;
  border-radius: 12px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--modal-shadow);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1;
}

.modal-header h2 {
  font-weight: 600;
  margin: 0;
}

.close-button {
  background: none;
  border: none;
  color: var(--text-medium);
  font-size: 1.5rem;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.close-button:hover {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  max-height: calc(90vh - 80px); /* Subtract header height */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.modal-body::-webkit-scrollbar {
  display: none;
}

/* Detail Sections */
.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.detail-section {
  margin-bottom: 2rem;
}

.detail-section h3 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.profit-display {
  text-align: center;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.profit-amount {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.profit-status {
  color: var(--text-medium);
  font-weight: 500;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row.header {
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-color);
}

.detail-label {
  color: var(--text-medium);
}

.detail-value {
  font-weight: 500;
}

.detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.detail-link {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.detail-link:hover {
  background-color: #d4e5ff;
}

.detail-chart-container {
  height: 200px;
  margin-bottom: 1rem;
}

.detail-sales-grid {
  width: 100%;
}

.detail-sales-grid .detail-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-sales-grid .detail-row.header {
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-color);
}

.detail-sales-grid .detail-row:last-child {
  border-bottom: none;
}

.detail-sales-grid .detail-label {
  text-align: left;
}

.detail-sales-grid .detail-value {
  text-align: center;
  font-weight: 500;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .product-content {
    grid-template-columns: 1fr 1fr;
  }

  .product-profit-section {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .product-profit {
    margin-bottom: 0;
  }
  
  .card-product-image {
    max-height: 70px;
  }
}

@media (max-width: 768px) {
  .app-content {
    padding: 1rem;
  }

  .detail-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modal-content {
    width: 95%;
  }

  .profit-amount {
    font-size: 1.25rem;
  }

  .product-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-profit-section {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .product-profit {
    margin-bottom: 0.5rem;
  }
  
  .products-container {
    padding: 1rem;
  }
  
  .dashboard-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .product-status-card {
    order: 3;
    text-align: center;
  }
  
  .card-image-container {
    width: 60px;
  }
  
  .card-product-image {
    max-height: 60px;
  }
  
  .title-image-container {
    gap: 0.75rem;
  }
  
  .card-link {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
  }
  
  .sales-row,
  .detail-sales-grid .detail-row {
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
        font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .products-container {
    padding: 0.75rem;
  }
  
  .products-grid {
    gap: 1.5rem;
  }
  
  .product-card {
    margin-bottom: 0.5rem;
  }
  
  .sales-row,
  .detail-sales-grid .detail-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: left;
    padding: 0.5rem 0;
  }
  
  .sales-row.header,
  .detail-sales-grid .detail-row.header {
    display: none;
  }
  
  .sales-row .sales-value,
  .detail-sales-grid .detail-row .detail-value {
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
  }
  
  .sales-row .sales-value::before,
  .detail-sales-grid .detail-row .detail-value::before {
    content: attr(data-label);
    font-weight: 600;
  }
  
  .sales-row .sales-label,
  .detail-sales-grid .detail-row .detail-label {
    grid-column: 1;
    font-weight: 600;
    font-size: 0.95rem;
    padding-top: 0.5rem;
    margin-bottom: -0.3rem;
  }
}

/* Product Image */
.product-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.product-image {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 4px;
}

/* Title and Image Layout */
.title-image-container {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.title-container {
  flex: 1;
  min-width: 0;
}

/* Card Product Image */
.card-image-container {
  display: flex;
  justify-content: center;
  padding: 0.25rem;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  width: 70px;
  flex-shrink: 0;
}

.card-product-image {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  border-radius: 2px;
}

/* Card Links */
.card-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.card-link {
  display: inline-block;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  background-color: var(--bg-light);
  color: var(--text-medium);
  border: 1px solid var(--border-color);
}

.card-link:hover {
  background-color: #f1f3f5;
  color: var(--text-dark);
}

/* Detail Actions */
.detail-actions {
  margin-top: 1rem;
}

.report-mismatch-btn {
  display: inline-block;
  background-color: #ffebee;
  color: #e53935;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 0.5rem;
}

.report-mismatch-btn:hover {
  background-color: #ffcdd2;
}

.report-mismatch-btn:disabled {
  background-color: #f5f5f5;
  color: #9e9e9e;
  cursor: not-allowed;
}

/* Configuration Menu */
.config-button {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-medium);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: visible;
}

.config-button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  pointer-events: none; /* This ensures clicks pass through to the button */
}

.config-button:hover {
  background-color: #f1f3f5;
  color: var(--text-dark);
}

.config-menu {
  position: absolute;
  top: 80px;
  right: 2rem;
  width: 300px;
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--modal-shadow);
  overflow: hidden;
  z-index: 100;
  transform-origin: top right;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.config-menu.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.9);
}

.config-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.config-header h3 {
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.config-body {
  padding: 1rem;
}

.config-item {
  margin-bottom: 1.25rem;
}

.config-item:last-child {
  margin-bottom: 0;
}

.config-item label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.config-item input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
}

.config-hint {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.config-footer {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
}

.apply-button, .reset-button {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.apply-button {
  background-color: var(--primary-color);
  color: white;
}

.apply-button:hover {
  background-color: #0558cb;
}

.reset-button {
  background-color: var(--bg-light);
  color: var(--text-medium);
}

.reset-button:hover {
  background-color: #f1f3f5;
  color: var(--text-dark);
}

/* Product header with timestamp and purchased tag */
.product-timestamp-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.purchased-tag {
  background-color: #4CAF50;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Mark as Purchased button */
.mark-purchased-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.2s ease;
  width: 100%;
}

.mark-purchased-btn:hover {
  background-color: #45a049;
}

.mark-purchased-btn:disabled {
  background-color: #cccccc;
  cursor: default;
}

.mark-purchased-btn.purchased {
  background-color: #cccccc;
  cursor: default;
} 