@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.wrapper {
  width: 480px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  overflow: hidden;
}

.wrapper header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px 15px;
}

header .current-date {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}

header .icons {
  display: flex;
}

header .icons span {
  height: 40px;
  width: 40px;
  color: #333;
  font-size: 1.8rem;
  text-align: center;
  cursor: pointer;
  line-height: 40px;
  border-radius: 50%;
  background: #f2f2f2;
  margin: 0 5px;
  transition: all 0.3s ease;
}

header .icons span:hover {
  background: #ddd;
  transform: scale(1.1);
}

.calender {
  padding: 20px;
}

.calender ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  text-align: center;
}

.calender .weeks li {
  font-weight: 500;
  color: #555;
  width: calc(100% / 7);
}

.calender .days {
  margin-top: 15px;
}

.calender .days li {
  width: calc(100% / 7);
  position: relative;
  margin-top: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.days li.inactive {
  color: #aaa;
}

.days li.weekend {
  color: red; /* Saturday & Sunday */
}

.days li.weekday {
  color: black; /* Other days */
}
 .days li.active {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  background-color:#764ba2;
  border-radius: 50%;
}

.calender .days li:s:before {
  position: absolute;
  content: "";
  height: 42px;
  width: 42px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.3s ease;
}

.days li:hover::before {
  background: rgba(0,0,0,0.05);
}

.days li.active::before {
  background: #764ba2;
  box-shadow: 0 0 10px rgba(118,75,162,0.8);
}

.days li.poya {
  background-color: green;
  color: white;
  border-radius: 50%;
}