
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size:x-large;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2 {
  margin: 20px 0;
  font-size: 4vh;
  color: #2c3e50;
  padding: 1vh;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.day {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 200px;
  min-width: 120px;
  position: relative;
  overflow: hidden;
}

.day:hover {
  background: #e8f0fe;
  border-color: #a0c4ff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.day span {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #2c3e50;
}

.day .requests {
  font-size: 0.9em;
  line-height: 1.5;
  flex-grow: 1;
  overflow-y: auto;
  width: 100%;
}

.day .requests div {
  margin: 5px 0;
  padding: 5px 8px;
  background: #dff9fb;
  color: #130f40;
  border: 1px solid #c7ecee;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.day .requests div:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background: #74b9ff;
  color: #fff;
}

.calendar-container {
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  background: #2c3e50;
  color: #ffffff;
  padding: 10px 0;
  border-radius: 8px 8px 0 0;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  max-width: 100%;
  padding: 20px;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
}

.day .requests::-webkit-scrollbar {
  width: 8px;
}

.day .requests::-webkit-scrollbar-thumb {
  background: #a0c4ff;
  border-radius: 5px;
}

.day .requests::-webkit-scrollbar-thumb:hover {
  background: #74b9ff;
}

@media (max-width: 90%) {
  .calendar {
    grid-template-columns: repeat(2, 1fr);
  }
  .calendar::before {
    content: none;
  }
}

@media (min-width: 90%) and (max-width: 100%) {
  .calendar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dayHeader {
  font-size: 1.2em;
  text-align: center;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: #eaf1f4;
  color: #2c3e50;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #ddd;
}