body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
}

.navbar {
  width: 100%;
  max-width: 1920px;
  padding: 0 64px;
  height: 95px;
  background: white;
  border-bottom: 1px solid #F5F5F5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  gap: 64px;
}

.logo {
  width: 70px;
  height: 70px;
}

/* Přidáno stylování pro ul a li */
.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 17px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
}

.nav-item .label {
  font-size: 16px;
  font-weight: 500;
  color: #121212;
  text-align: center;
  text-decoration: none; /* aby odkazy neměly podtržení defaultně */
}

.nav-item.active .label {
  color: #7A00A3;
  font-weight: 600;
}

.nav-item .underline {
  width: 128px;
  height: 3px;
  background-color: #7A00A3;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-top: 4px;
}

.underline-text {
  text-decoration: underline;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.icon-circle {
  width: 32px;
  height: 32px;
  background-color: #FAFAFA;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
}

.status-indicator {
  width: 16px;
  height: 16px;
  background-color: #1FCB4F;
  border: 2px solid white;
  border-radius: 50%;
}

.ql-align-center {
    text-align: center !important;
}

.ql-align-right {
    text-align: right !important;
}

.ql-align-justify {
    text-align: justify !important;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0;
    }
}