/* ===========================
   Trip Planner CSS
   =========================== */
body {
  background: #f7f7f7;
  font-family: Arial, sans-serif;
}

.planner-container {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 20px;
  padding: 20px;
}

.activities-col,
.dates-col,
.summary-col {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.activities-col h3,
.dates-col h2,
.summary-col h3 {
  margin-top: 0;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

.activity-wrapper {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 8px;
  cursor: grab;
  background: #fafafa;
  border-radius: 6px;
  transition: 0.2s;
}
.activity-wrapper:hover {
  background: #f0f0f0;
}

.clone {
  position: fixed;
  pointer-events: none;
  opacity: 0.9;
  z-index: 9999;
  width: 220px;
  border: 2px dashed #aaa;
  background: #fff;
}

.step-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.step-controls button {
  background: #007bff;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
.step-controls button:hover {
  background: #0056b3;
}

.step-wrapper {
  margin-top: 10px;
}

.hidden { display: none; }

.planner-day {
  border: 2px dashed #ccc;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #fcfcfc;
}
.planner-day strong {
  display: block;
  margin-bottom: 6px;
}

.dropped-block {
  background: #007bff;
  color: white;
  padding: 6px;
  margin-top: 6px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropped-block button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

#summary {
  white-space: pre-wrap;
  font-family: monospace;
  background: #f6f6f6;
  padding: 10px;
  border-radius: 6px;
}