

    .calendar {
      background: #fff;
      margin: 20px 0;
      width: 100%;
    }
    .calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      flex-wrap: wrap;
		position: relative;
      gap: 10px;
    }
    .calendar-header select {
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #fff;
    font-size: 18px;
		position: relative;
    font-weight: 800;	 
	/*	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075);
      box-shadow: 0 1px 6px 2px rgba(0, 0, 0, .075);*/
    }


    .calendar-header button {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.2rem;
      color: #555;       
	  width: 40px;
      height: 40px;
	  border-radius: 100%;
	 /* -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075);
      box-shadow: 0 1px 6px 2px rgba(0, 0, 0, .075);*/
    }
    .calendar-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 5px;
      margin-top: 10px;
	  position: relative;
    }
    .day-name, .day {
      text-align: center;
      padding: 10px;
    }
    .day-name {
      font-weight: bold;
      color: #000;
    }
    .day {
      background: #fff;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;    
      -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075);
      box-shadow: 0 1px 6px 2px rgba(0, 0, 0, .075);
    }
    .day:hover:not(.today) {
      background: #e0e0e0;
    }
    .today {
      background: #00ADEF;
      color:#FFFFFF;
      font-weight: bold;
      border: 2px solid #00ADEF;
      pointer-events: none;
    }
.day-event {
      background-color: #ffeb3b;
    cursor: pointer;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    font-size: 0;
    position: relative;
    left: 15px;
    margin-top: -13px;
}
.day-event-ar {
      background-color: #ffeb3b;
    cursor: pointer;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    font-size: 0;
    position: relative;
    right: 15px;
    margin-top: -13px;
}
    @media (max-width: 600px) {
      .calendar {
        padding: 15px;
      }
      .day, .day-name {
        padding: 8px;
        font-size: 0.85rem;
      }
      .calendar-header {
       /* flex-direction: column;*/
        align-items: stretch;
      }
      .calendar-header select {
        /*width: 100%;*/
      }
    }

















