body {
  background: linear-gradient(180deg, #182535 0%, #182535 100%) !important;
  padding: 0 !important;
}


.card{
width: clamp(300px, 100vw, 500px) !important;
padding-inline: clamp(20px, 5vw, 40px) !important;
}


body {
  font-family: Arial, sans-serif;
}

/* Popup background */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
}

/* Popup box */
.popup {
  background: #fff;
  padding: 20px;
  width: 320px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.popup h3 {
  text-align: center;
  margin-bottom: 10px;
}

.popup table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.popup table th,
.popup table td {
  padding: 6px 0;
}

.popup table tr td:last-child {
  text-align: right;
}

.popup hr {
  margin: 10px 0;
}

.popup .total {
  font-weight: bold;
}

.popup button {
  width: 100%;
  padding: 8px;
  margin-top: 10px;
  background: #1b91d1;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup button:hover {
  background: #1572a9;
}




