* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.calendar {
  width: 100%;
  border-collapse: collapse;
}
.calendar td {
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
}

.calendar-container {
  max-width: 400px;
  /*margin: 20px auto;*/
  margin-bottom: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header {
  margin-bottom: 20px;
}

.header h3 {
  color: #1a1a1a;
  margin: 0;
}

.month-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  background: #f8f9fa;
  padding: 10px;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  color: #666;
}

.calendar {
  width: 100%;
  border-collapse: collapse;
}

.calendar th {
  padding: 10px;
  color: #666;
  font-weight: normal;
}

.calendar td {
  padding: 10px;
  text-align: center;
  cursor: pointer;
}

.calendar td:hover:not(.disabled) {
  background-color: #f0f0f0;
}

.today {
  background-color: #f0f0f0;
}

.in-range {
  background-color: #e3edfd !important;
  color: #4285f4 !important;
}

.past-date {
  color: #ddd;
  cursor: not-allowed;
  background-color: #f9f9f9;
}

.selected {
  background-color: #006d5a !important;
  color: white !important;
}

.selected-range {
  background-color: #006d5a !important;
  color: white !important;
}

.disabled {
  color: #ccc;
  cursor: default;
}

.price-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.price-info p {
  color: #666;
  margin: 5px 0;
}

.message-area {
  margin-top: 20px;
}

.message-area textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
  min-height: 100px;
}

.char-count {
  text-align: right;
  color: #666;
  font-size: 0.8em;
}

.check-availability-btn {
  width: 100%;
  padding: 15px;
  background-color: #006d5a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
}

.check-availability-btn:hover {
  background-color: #003940;
}

.learn-more {
  margin-top: 20px;
  text-align: center;
}

.learn-more a {
  color: #004953;
  text-decoration: none;
}

.in-range {
  background-color: #e3edfd !important;
  color: #4285f4 !important;
}

.selected {
  background-color: #4285f4 !important;
  color: white !important;
}

.first-selected {
  border-radius: 50% 0 0 50% !important;
}

.last-selected {
  border-radius: 0 50% 50% 0 !important;
}

.single-selected {
  border-radius: 50% !important;
}

.category-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #e0e0e0;
  padding: 15px;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.category-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.category-label:hover {
  background-color: #f0f0f0;
}

.category-label input[type="checkbox"] {
  margin-right: 10px;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #007bff;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
}

.category-label input[type="checkbox"]:checked {
  background-color: #007bff;
}

.category-label input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
}

.category-label span {
  font-size: 14px;
  color: #333;
}

.submit-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.submit-btn:hover {
  background-color: #0056b3;
}

form label:first-child {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  display: block;
}
