/* Meeting page specific styles for time slots */
.time-slots-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.time-slot-wrapper {
  width: 100%;
  max-width: 400px; /* Limit width for better appearance */
}

.time-slot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 15px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 100px;
  background-color: white;
}

.time-slot-item:hover {
  border-color: #007bff;
  background-color: #f8f9fa;
}

.time-slot-item.selected {
  border-color: #007bff;
  background-color: #e3f2fd;
  box-shadow: 0 4px 8px rgba(0,123,255,0.2);
}

.day-name {
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
  display: block;
}

.date-time {
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
  display: block;
}