.body-bg {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f7f7f7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header-gradient {
  background-color:#003576 ;
}

.footer-gradient {
  background-color:#003576 ;
}

.brand-text {
  font-size: 1.2rem;
}

.card {
  border-radius: 10px;
  background: #ffffff;
  padding: 1rem;
}

.list-group-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

.list-group-item:last-child {
  border-bottom: none;
}

#calendar {
  margin: 0 auto;
}

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1rem;
}

.fc-daygrid-event {
  background-color: #028d86 !important;
  border: none !important;
  color: #fff !important;
  padding: 4px 6px;
  border-radius: 4px !important;
  transition: opacity 0.2s ease-in-out;
}

.fc-daygrid-event:hover {
  opacity: 0.9;
}

.fc-list-event-graphic {
  border-color: #028d86 !important;
}

.fc-tooltip {
  background: #fff;
  border-radius: 5px;
  font-size: 0.9rem;
  min-width: 140px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1rem;
  }
  .nav-link {
    font-size: 0.9rem !important;
  }
  .fc .fc-toolbar-title {
    font-size: 1rem;
  }
  .fc-daygrid-event {
    font-size: 0.7rem;
  }
}


