
#calendar {
    max-width: 700px;
    margin: 0 auto;
    padding: 5px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#calendar-header {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;
    margin-bottom: 20px;
}

#calendar-header h2 {
    font-size: 18px; /* Smaller font size for the month name */
    margin: 0;
	
}
#month-container h2 {
    text-align: center;
    width: 100%;
    font-size: 1.5em;
    margin-bottom: 10px;
	color: #37b9cd;
}

button {
    font-size: 24px;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.days-of-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f2f2f2;
    padding: 5px;
    text-align: center;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    margin-bottom: 5px;
}

.days-of-week div {
    padding: 5px;
    background-color: #dcdcdc;
    border: 1px solid #ccc;
    font-size: 14px;
    text-transform: uppercase;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px;
}

.days div {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    background-color: #f9f9f9;
    border-radius: 4px;
    cursor: pointer;
}

.disabled {
    background-color: #e0e0e0 !important;
    cursor: not-allowed;
    color: #ffffff;
}
/*.disabled2 {
    background-color: #e0e0e0;
    cursor: not-allowed;
    color: #dedcdd;
}*/

.available {
    background-color: #3ba018 !important;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
}

.highlighted {
    background-color: #fa0b0b !important;
    color: #ffffff;
    font-weight: bold;
}

/* Ensure the container is centered */
.arrow-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically, if the container height allows */
  gap: 20px; /* Add space between the arrows */
  margin-top: 20px; /* Optional: Adjust the space above the arrows */
  margin-bottom: 20px; /* Optional: Adjust the space above the arrows */
}

/* Arrow button styling */
.arrow {
  font-size: 30px; /* Large arrows for easy clicking */
  padding: 12px 12px; /* Padding to make buttons larger */
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  border-radius: 10%; /* Circular button */
  color: #333; /* Default color */
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none; /* Remove focus outline */
  display: inline-block;
}

/* Left arrow (prev) specific styling */
.prev {
  color: #ffffff; /* Warm, friendly orange */
}

/* Right arrow (next) specific styling */
.next {
  color: #ffffff; /* Calm, inviting blue */
}

/* Hover effect for both buttons */
.arrow:hover {
  background-color: #e9e9e9;
  transform: scale(1.1); /* Slightly larger on hover */
}

/* Hover effect for the prev button */
.prev:hover {
  background-color: #37b9cd; /* Darker orange on hover */
}

/* Hover effect for the next button */
.next:hover {
  background-color: #37b9cd; /* Darker blue on hover */
}

/* Optional: Focus effect for accessibility */
.arrow:focus {
  border-color: #f39c12; /* Focus color for accessibility */
  box-shadow: 0 0 5px rgba(243, 156, 18, 0.5); /* Soft glow effect */
}


/* Style for large screens: Arrows remain on the sides */
@media (min-width: 768px) {
    #calendar-header {
        display: flex;
        justify-content: center; /* Center the month name and arrows */
        align-items: center;
    }

    #calendar-header button {
        position: relative;
        top: 0;
    }
}

/* Style for mobile screens: Arrows are below the calendar */
@media (max-width: 767px) {
    #calendar-header {
        display: block;
        text-align: center;
    }

    #calendar-header button {
        margin-top: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
        display: inline-block;
    }

    .prev {
        margin-right: 10px;
    }

    .next {
        margin-left: 10px;
    }
