@charset "utf-8";
/* CSS Document */

    body { padding: 0px; margin: 0; background: #f9f9f9; }
    .room-card { display: inline-block; margin: 10px; padding: 15px; border-radius: 8px; background: #fff; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; width: 90px; }
    .room-card:hover { background: #e0f7fa; }
    .room-container { display: flex; flex-wrap: wrap; justify-content: space-around; }
    .selected-rooms { margin-top: 20px; }
    .room-item { margin-bottom: 10px; padding: 10px; border: 1px solid #ddd; border-radius: 6px; background: #fff; }
    .room-item select { margin-left: 10px; }
    .sticky-price {
      position: fixed;
      bottom: 20px;
      left: 10%;
      right: 10%;
      background: white;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
      padding: 15px;
      border-radius: 12px;
      text-align: center;
      font-size: 18px;
      font-weight: bold;
      z-index: 100;
    }
    button.add-btn {
      margin-left: 10px;
      padding: 6px 12px;
      background: #00796b;
      color: white;
      border: none;
      border-radius: 6px;
    }
    input, select {
      width: 100%;
      padding: 8px;
      margin: 5px 0;
      box-sizing: border-box;
      border-radius: 4px;
      border: 1px solid #ccc;
    }
    form { max-width: 600px; margin: auto; background: #fff; padding: 15px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); margin-bottom: 80px; }
	  
	 button.remove-btn {
  width: 32px;
  height: 32px;
  background-color: transparent;
  color: #fff;
  border: none;
  border-radius: 50%;
  
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Add this for smooth transitions */
  transition: all 0.3s ease;
}

button.remove-btn:hover {
  /* Add a nice hover effect, e.g., background + scale */
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

 
	  
    button[type="submit"] {
      width: 100%;
      padding: 10px;
      background: #00796b;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
    }
	  
	.room-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
	  .extras-box {
		  display: inline-block;
		  width: 100%;
	  }
.extras-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
	margin-bottom: 5px;
}

.extra-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background 0.2s, border-color 0.2s;
  user-select: none;
}

.extra-card:hover {
  background: #e0f7fa;
}

.extra-card.checked {
  border-color: #00796b;
  background-color: #e0f2f1;
  font-weight: bold;
}

.extra-card input {
  display: none;
}
