/* Form card style */
#ssb-form.ssb-card {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-family: Arial, sans-serif;
  color: #333;
}

#ssb-form h2 {
  text-align: center;
  margin-bottom: 25px;
}

.ssb-field {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.ssb-field label {
  font-weight: bold;
  margin-bottom: 5px;
}

.ssb-field input, .ssb-field select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.ssb-btn {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #4f46e5;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.ssb-btn:hover {
  background: #3730a3;
}

.ssb-total {
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

#ssb-msg {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
}

#ssb-receipt {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 350px;
  transform: translate(-50%, -50%);
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  text-align: center;
}

#ssb-receipt h3 {
  margin-bottom: 15px;
}

#ssb-receipt .ssb-btn {
  width: 45%;
  margin: 10px 5px 0 5px;
}