/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
} */

.date-picker-container {
  width: 100%;
  padding: 10px;
}

.employe-select{
  
}

#date-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.calendar {
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: black;
  color: white;
  font-weight: bold;
}

.calendar-header button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.calendar table {
  border-collapse: collapse;
  width: 100%;
}

.calendar th,
.calendar td {
  text-align: center;
  padding: 10px;
  cursor: pointer;
  width: calc(100% / 7); /*Ensure even width for all days*/
  height: 10px; /* Ensure circular appearance */
}

.calendar th {
  background: #f0f0f0;
  font-weight: normal;
}

.calendar td {
  position: relative;
  transition: background-color 0.2s, color 0.2s, border-radius 0.2s;
  border-radius: 100%; /* Circular shape */
}

.calendar td:hover:not(.disabled) {
  background: black;
  border-radius: 7%;
  color: white;
  /* width: 70px; */
}

.calendar .disabled {
  color: #ccc;
  cursor: not-allowed;
}

.calendar .disabled:hover {
  background: #f0f0f0; /* Grayed-out hover for disabled dates */
}

.calendar .selected {
  background: black;
  color: white;
  border-radius: 7%; /* Circle for selected date */
}
