/* Topbar Styles */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 20px;
  height: 60px;
  z-index: 1000;
  margin-bottom: 0;
}

.topbar-left .logo {
  height: 40px;
  margin-left: 40px;
}

.topbar-right {
  display: flex;
  align-items: center;
}

.date-time {
  background-color: #eeeeee;
  padding: 10px 15px;
  border-radius: 5px;
  margin-right: 20px;
  color: black;
  font-family: 'Inter', sans-serif;
}

.notification {
  background-color: #eeeeee;
  padding: 10px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.notification i {
  font-size: 20px;
  color: black;
}

.bell-icon {
  height: 20px;
  width: 20px;
}

.topbar-divider {
  height: 2px;
  background-color: #d9d9d9;
}

.container-fluid {
  padding: 0; /* Remove padding around the dashboard */
}

/* Responsive Styles */ 
@media (max-width: 605px) {
  .date-time {
    font-size: calc(75%)
  }
}

@media (max-width: 520px) {
  .date-time {
    padding: 5px 10px;
    font-size: calc(70%);
  }
}

@media (max-width: 432px) {
  .date-time {
    padding: 3px 8px;
    font-size: calc(60%);
    margin-right: 10px;
  }
}

@media (max-width: 378px) {
  .date-time {
    padding: 3px 5px;
    font-size: calc(50%);
    margin-right: 3px;
  }
} 