#booking-widget {
  font-family: sans-serif;
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

#booking-widget form {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

#booking-widget label {
  display: block;
  margin-bottom: 10px;
}

#booking-widget input,
#booking-widget select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
}

#booking-widget button {
  padding: 10px 20px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#booking-widget #bookings-table {
  margin-top: 20px;
}




#booking-widget .booking-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);

}

#booking-widget .booking-line {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 15px;
}

#booking-widget .booking-line .icon {
  width: 20px;
  margin-right: 8px;
  color: #555;
}

#booking-widget .booking-line .label {
  font-weight: bold;
  margin-right: 5px;
}

#booking-widget .booking-card button {
  margin-top: 10px;
  padding: 8px 16px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#booking-widget .booking-card button:hover {
  background: #bd2130;
}
