/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
.calendar {
  font-family: Arial, sans-serif;
  width: 300px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f2f2f2;
}

.month-name {
  margin: 0;
}

.prev, .next {
  background-color: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.days {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.day {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.today {
  background-color: #f2f2f2;
  color: #333;
}

.reserved {
  background-color: #ff6666;
  color: #fff;
}
