/* Container */
#ccbooking {
  font-family: sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
}

/* Sidebar */
.sidebar {
  background: #0c1024;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0.8;
  transition: background 0.3s, opacity 0.3s;
}

.sidebar ul li:hover,
.sidebar ul li.active {
  opacity: 1;
  background: #059669;
}

/* Content */
.content {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Steps */
.step { display: none; }
.step.active { display: block; }

/* Buttons */
button {
  background: #059669;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-right: 10px;
  transition: background 0.3s;
}
button:hover { background: #047857; }

/* Inputs */
input, select, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
input::placeholder, textarea::placeholder { color: #999; }

/* Option buttons */
.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.option-buttons button.selected {
  background: #047857;
  color: #fff;
}

/* Map iframe */
.map iframe {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  border: none;
}

/* Modal */
.modal { /* same as before */ }
.modal-content { /* same as before */ }
#close-modal, #close-summary-modal { /* same as before */ }

/* Booking summary table */
.booking-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.booking-summary-table th, .booking-summary-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.booking-summary-table th {
  background: #059669;
  color: #fff;
}

/* Responsive */
@media(max-width: 768px){
  #ccbooking { grid-template-columns: 1fr; }
  .modal-content { width: 95%; }
}
