body {
  font-family: Rubik, Arial, sans-serif;
  background-color: #ffffff;
}

.header-turnos-sys {
    margin: 20px auto 20px;
    text-align: left;
    position: relative;
    font-size: 14px;
    padding: 10px 10px 40px 10px;
    border: solid 1px;
    border-radius: 10px;
}

.calendar {
  width: 350px;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.calendar-header button {
  background-color: transparent;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}

.turnos-disponibles {
   font-size:18px;
   width: 100%;
   margin: 20px auto;
}
.turnos-tomados {
   font-size:16px;
   width: 100%;
   margin: 20px auto;
}

#month-year {
  font-size: 1.2em;
  font-weight: bold;
}
.calendar-weekdays, .calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-weekdays div, .calendar-dates div {
  text-align: center;
  padding: 10px;
}
.calendar-weekdays {
  background-color: #eaeef3;
}
.calendar-weekdays div {
  font-weight: bold;
}
.calendar-dates div {
  border-bottom: 1px solid #eaeef3;
  cursor: pointer;
}
.calendar-dates div:hover {
  background-color: #f1f1f1;
}

.current-date {
  background-color: #007bffc9;
  color: #fff;
  border-radius: 10%;
}

@media (max-width: 960px) {
    body {
        width:95%;
	zoom: 100%;
    }
    .turnos_anteriores {
	font-size:10px;
    } 
    .turnos-disponibles {
	font-size:12px;
    }
    .turnos-tomados {
	font-size:12px;
    }
}

@media (max-width: 767px) {
    body {
	  width: 95%;
	  zoom: 100%;
    }
    .turnos_anteriores {
	font-size:10px;
    } 
    .calendar-weekdays {
	font-size:10px;
    }
    .calendar {
	width: 95%;
    }
    .turnos-disponibles {
	font-size:12px;
	width: 100%;
    }
    .turnos-tomados {
	font-size:12px;
    }
}

