#calendar {
    width: 50%; /* Reduce width to 50% */
    margin: 0 auto; /* Center the calendar */
}

    /* Highlight days with appointments */
.has-appointments {
    background-color: #e3f2fd; /* Light blue background */
    border: 2px solid #90caf9; /* Blue border */
}

/* Ensure the appointments list is visible and properly spaced */
#appointments-list {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}
.doctor-list {
    margin-top: 20px;
}
.doctor-list button {
    margin-right: 10px;
    margin-bottom: 10px;
}
.nowrap {
    white-space: nowrap;
}
.menu-list a {
    display: block;
    padding: 0.5em 1em;
    width: 100%;
}
.menu-list a:hover {
    background-color: #f5f5f5;
}
[v-cloak] {
    display: none;
}
.captcha-box canvas {
    display: block;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
}
.captcha-refresh {
    margin-left: 0.5rem;
}
.is-right-icon {
    position: absolute;
    right: 1rem;
    top: 0.75rem;
    pointer-events: none;
}

/* ChangePassword component styles */
.changepassword-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 2em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.error {
  color: red;
  margin-bottom: 1em;
}