/**
 * Dashboard Styles
 * A modern, responsive dashboard with sidebar navigation and video banner
 */

/* Import Google Fonts - Inter for modern UI */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* CSS Custom Properties (Variables) for consistent theming */
:root {
  /* Colors - Primary and gray scale for UI consistency */
  --color-primary: rgb(79, 80, 83);
  --color-primary-light: rgb(219 234 254);
  --color-gray-100: rgb(243 244 246);
  --color-gray-200: rgb(229 231 235);
  --color-gray-700: rgb(55 65 81);
  --color-gray-900: rgb(17 24 39);
  
  /* Layout measurements */
  /* Controls the width of the sidebar navigation - 14rem = 224px */
  --sidebar-width: 14rem;
  --transition-speed: 300ms;
}

/* Base styles - Foundation styles for the document */
body {
  background-color: var(--color-gray-100);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* Smooth font rendering on webkit browsers */
}

/* Layout - Main structural components */
.page-wrapper {
  display: flex;
  min-height: 100vh; /* Full viewport height */
  position: relative;
}

/* Sidebar - Navigation panel styles */
.sidebar {
  background-color: white;
  /* Width is controlled by --sidebar-width CSS variable in :root */
  width: var(--sidebar-width);
  min-height: 100vh;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  position: fixed;
  transform: translateX(-100%); /* Hidden by default on mobile */
  transition: transform var(--transition-speed) ease-in-out;
  z-index: 50; /* Above main content */
}

/* Responsive sidebar behavior */
@media (min-width: 768px) {
  .sidebar {
    position: relative;
    transform: translateX(0); /* Always visible on desktop */
  }
}

/* Sidebar inner container */
.sidebar-inner {
  padding: 1rem;
}

/* Sidebar header */
.sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em; /* Tighter letter spacing for headers */
}

/* Navigation menu container */
.sidebar-nav {
  margin-top: 1rem;
}

/* Navigation links */
.nav-link {
  display: flex;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gray-700);
  font-weight: 500;
  transition: all 150ms ease-in-out;
  text-decoration: none;
}

/* Navigation link hover state */
.nav-link:hover:not(.disabled) {
  background-color: var(--color-gray-200);
  color: var(--color-primary);
}

/* Disabled navigation link state */
.nav-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Active navigation link state */
.nav-link.active {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

/* Navigation icons */
.nav-link i {
  width: 1.25rem;
  height: 1.25rem;
}

/* Main Content Area */
.main-content {
  flex: 1;
  padding: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}

/* Mobile Menu Toggle Button */
.menu-button {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--color-gray-200);
  display: block;
  border: none;
  cursor: pointer;
}

/* Mobile menu button hover state */
.menu-button:hover {
  background-color: rgb(209 213 219);
}

/* Hide menu button on desktop */
@media (min-width: 768px) {
  .menu-button {
    display: none;
  }
}

/* Content Typography */
.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-gray-900);
}

.page-description {
  margin-top: 0.5rem;
  color: rgb(107 114 128);
}

/* Mobile Overlay - Background dim when sidebar is open */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(208, 203, 203, 0.5);
  display: none;
}

/* Utility Classes */
.mt-4 {
  margin-top: 1rem;
}

.hidden {
  display: none;
}

/* Sidebar Active State */
.sidebar.active {
  transform: translateX(0);
}

/* Page Transition Animations */
.page {
  animation: fadein 0.3s ease-in-out;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Page Visibility */
.page[hidden] {
  display: none;
}

/* Card Grid Layout */
.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Platform Cards */
.platform-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  transition: transform 150ms ease-in-out;
}

.platform-card:hover {
  transform: translateY(-4px);
}

/* Valt plattformskort */
.platform-card.selected {
  background-color: rgb(220, 252, 231); /* Ljusgrön färg */
  border: 2px solid rgb(34, 197, 94); /* Mörkare grön ram */
  transform: translateY(-4px);
}

.platform-card-icon {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.platform-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.platform-card-description {
  color: var(--color-gray-700);
  font-size: 0.875rem;
  line-height: 1.5;
}

.platform-card-price {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Video Banner Component */
.video-banner {
  position: relative;
  width: 100%;
  height: 10rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

/* Responsive video banner heights */
@media (min-width: 768px) {
  .video-banner {
    height: 12rem; /* Taller on tablet */
  }
}

@media (min-width: 1024px) {
  .video-banner {
    height: 12rem; /* Tallest on desktop */
  }
}

/* Video overlay gradient */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
  z-index: 1;
}

/* Video text overlay */
.video-text-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  /*background-color: rgba(224, 217, 217, 0.5);  Transparent background */
  background-color: transparent; /* Transparent background */
  color: white; /* White text */
  font-family: 'Consolas', monospace; /* Consolas font */
  padding: 0px 1px;
  border-radius: 4px;
  font-size: 22px;
  z-index: 2; /* Above the video overlay */
}

/* Video Controls Container */
.video-controls {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2; /* Above overlay */
}

/* Video Switcher Buttons */
.video-switch {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all 150ms ease-in-out;
}

/* Video switcher hover state */
.video-switch:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1); /* Slight grow effect */
}

/* Active video switcher state */
.video-switch.active {
  background-color: rgba(37, 99, 235, 0.3);
  color: white;
}

/* Video Element */
.video-content {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio while filling container */
}

/* VMS Cards */
.vms-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  overflow: hidden;
  transition: all 150ms ease-in-out;
  cursor: pointer;
}

.vms-card:hover {
  transform: translateY(-4px);
}

/* Valt VMS-kort */
.vms-card.selected {
  background-color: rgb(220, 252, 231); /* Ljusgrön färg */
  border: 2px solid rgb(34, 197, 94); /* Mörkare grön ram */
  transform: translateY(-4px);
}

.vms-card-icon {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem;
}

.vms-card-icon i {
  width: 1.5rem;
  height: 1.5rem;
}

.vms-card-content {
  padding: 1.5rem;
}

.vms-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

.vms-card-details {
  color: var(--color-gray-700);
  font-size: 0.875rem;
  line-height: 1.5;
}

.vms-card-details p {
  margin-bottom: 0.5rem;
}

/* VMS Cards Grid */
.charts-container {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .charts-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .charts-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Camera Cards */
.camera-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.camera-card.selected {
    background-color: rgb(220, 252, 231);
    border: 2px solid rgb(34, 197, 94);
    transform: translateY(-4px);
}

.camera-card-image {
    width: 100%;
    height: 130px; /* Justerar höjden för att kompensera för padding */
    overflow: hidden;
    padding: 10px; /* Behåller padding för spacing */
    box-sizing: border-box; /* Säkerställer att padding inkluderas i höjden */
}

.camera-card-image img {
    width: calc(100% - 20px); /* Justerar bredden för att ta hänsyn till padding */
    height: calc(100% - 20px); /* Justerar höjden för att ta hänsyn till padding */
    object-fit: contain; /* Behåller contain för att visa hela bilden */
    background-color: #f3f4f6; /* Behåller bakgrundsfärgen för kontrast */
    display: block; /* Förhindrar oönskade marginaler */
    margin: 0 auto; /* Centrerar bilden */
}

.camera-card-content {
    padding: 1.5rem;
}

.camera-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.camera-card-details {
    color: var(--color-gray-700);
    font-size: 0.875rem;
    line-height: 1.5;
}

.camera-card-details p {
    margin-bottom: 0.5rem;
}

/* Camera Card Quantity Selector */
.camera-card-quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.5rem 0;
    padding: 0 1rem;
}

.camera-card-quantity label {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    margin-bottom: 0.25rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-gray-200);
    border-radius: 0.375rem;
    overflow: hidden;
    width: 100%;
    max-width: 150px;
}

.quantity-btn {
    width: 2rem;
    height: 2rem;
    background-color: var(--color-gray-100);
    border: none;
    color: var(--color-gray-700);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: var(--color-gray-200);
}

.quantity-input {
    flex: 1;
    height: 2rem;
    border: none;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-900);
    appearance: textfield; /* Standard */
    -moz-appearance: textfield; /* Firefox */
}

/* Ta bort pilarna i number input för Chrome, Safari, Edge, Opera */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Camera Card Button */
.camera-card-button {
    width: 50%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem; /* Lägg till utrymme i botten */
    margin-left: auto; /* Centrera knappen */
    margin-right: auto; /* Centrera knappen */
    display: block; /* Behövs för att margin auto ska fungera */
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 150ms ease-in-out;
}

.camera-card-button:hover {
    background-color: rgb(24, 126, 24); /* Mörkare grön vid hover */
}

/* Filter Controls */
.filter-controls {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.filter-item {
  flex: 1;
  min-width: 150px;
}

.filter-item label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-gray-700);
  font-size: 0.875rem;
}

.filter-item select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.375rem;
  background-color: white;
  font-size: 0.875rem;
  color: var(--color-gray-900);
}

.filter-item-slider {
  width: 100%;
  margin-top: 0.5rem;
}

.filter-item-slider input[type="range"] {
  width: 100%;
  margin-top: 0.5rem;
  -webkit-appearance: none; /* Tar bort standardutseendet */
  appearance: none;
  height: 8px;
  background: var(--color-gray-500); /* Ljusgrå bakgrund för spåret */
  border-radius: 4px;
  outline: none;
}

/* Slider thumb (knappen) */
.filter-item-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background-color: var(--color-primary); /* Använder primärfärgen för knappen */
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: -5px; /* Justera vertikalt för att centrera över spåret */
}

.filter-item-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background-color: var(--color-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s;
  transform: translateY(-50%); /* Centrera vertikalt för Firefox */
}

/* Hover-effekt för slider thumb */
.filter-item-slider input[type="range"]::-webkit-slider-thumb:hover {
  background-color: rgb(29, 78, 216); /* Mörkare blå vid hover, samma som för knappar */
}

.filter-item-slider input[type="range"]::-moz-range-thumb:hover {
  background-color: rgb(29, 78, 216);
}

/* Aktiv del av slider-spåret (fylld del) */
.filter-item-slider input[type="range"] {
  background: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-gray-200) 50%, var(--color-gray-200) 100%);
}

/* JavaScript för att uppdatera gradientfärgen baserat på slider-värdet */
.filter-item-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 4px;
}

.filter-item-slider input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 4px;
}

/* No products message */
.no-products-message {
  grid-column: 1 / -1; /* Sträck över alla kolumner */
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  color: var(--color-gray-700);
  font-size: 1rem;
}

/* Camera Cards Grid */
.settings-form {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .settings-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .settings-form {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Switch Cards */
.switch-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.switch-card.selected {
    background-color: rgb(220, 252, 231);
    border: 2px solid rgb(34, 197, 94);
    transform: translateY(-4px);
}

.switch-card-image {
    width: 100%;
    height: 130px;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
}

.switch-card-image img {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: contain;
    background-color: #f3f4f6;
    display: block;
    margin: 0 auto;
}

.switch-card-content {
    padding: 1.5rem;
}

.switch-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.switch-card-details {
    color: var(--color-gray-700);
    font-size: 0.875rem;
    line-height: 1.5;
}

.switch-card-details p {
    margin-bottom: 0.5rem;
}

/* Switch Card Button */
.switch-card-button {
    width: 50%;
    padding: 0.75rem;
    margin-top: 0rem;
    margin-bottom: 1rem; /* Lägg till utrymme i botten */
    margin-left: auto; /* Centrera knappen */
    margin-right: auto; /* Centrera knappen */
    display: block; /* Behövs för att margin auto ska fungera */
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 150ms ease-in-out;
}

.switch-card-button:hover {
    background-color: rgb(24, 126, 24);
}

/* Switch Cards Grid */
.contact-form {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .contact-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-form {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Right Side Sliding Menu */
.right-menu {
  background-color: white;
  width: var(--sidebar-width);
  min-height: 100vh;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%); /* Hidden by default */
  transition: transform var(--transition-speed) ease-in-out;
  z-index: 60; /* Above sidebar */
}

/* Right menu active state */
.right-menu.active {
  transform: translateX(0);
}

/* Right menu inner container */
.right-menu-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Right menu header */
.right-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-gray-200);
}

/* Right menu title */
.right-menu-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-gray-900);
}

/* Right menu close button */
.right-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-gray-700);
  padding: 0.25rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-menu-close:hover {
  background-color: var(--color-gray-200);
  color: var(--color-gray-900);
}

/* Right menu content */
.right-menu-content {
  flex: 1;
  overflow-y: auto;
}

/* Right menu section */
.right-menu-section {
  margin-bottom: 1.5rem;
}

/* Right menu total section */
.right-menu-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background-color: var(--color-gray-100);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.right-menu-total-price {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-gray-900);
}

/* Create offer button */
.right-menu-offer-button {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 150ms ease-in-out;
  text-align: center;
}

.right-menu-offer-button:hover {
  background-color: rgb(55, 56, 58);
}

/* Offer page styles */
.offer-container {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  margin-bottom: 1.5rem;
  width: 100%;
}

.offer-container h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
}

.offer-container h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-gray-700);
}

.offer-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.offer-table th,
.offer-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-200);
}

.offer-table th {
  font-weight: 600;
  color: var(--color-gray-700);
  background-color: var(--color-gray-100);
}

.offer-table tbody tr:hover {
  background-color: var(--color-gray-100);
}

.offer-table tfoot {
  font-weight: 700;
  color: var(--color-gray-900);
  background-color: var(--color-gray-100);
}

.offer-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

#print-offer {
  padding: 0.75rem 1.5rem;
}

/* Right menu section title */
.right-menu-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 0.75rem;
}

/* Selected products list */
.selected-products-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* No products selected message */
.no-products-selected {
  color: var(--color-gray-700);
  font-size: 0.875rem;
  font-style: italic;
}

/* Right menu toggle button */
.right-menu-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Produkt räknare styling */
.product-counter {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: black;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.product-counter.has-products {
  background-color: #28a745;
}

.right-menu-toggle:hover {
  transform: scale(1.05);
  background-color: rgb(55, 56, 58);
}

.right-menu-toggle i {
  width: 1.5rem;
  height: 1.5rem;
}

/* Selected product item */
.selected-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background-color: var(--color-gray-100);
  border-radius: 0.5rem;
}

.selected-product-info {
  display: flex;
  flex-direction: column;
}

.selected-product-name {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-gray-900);
}

.selected-product-price {
  font-size: 0.75rem;
  color: var(--color-gray-700);
}

.selected-product-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-gray-700);
  padding: 0.25rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selected-product-remove:hover {
  background-color: var(--color-gray-200);
  color: rgb(220, 38, 38);
}
