.logo {
  display: flex;
  align-items: center;
}

.logo-left {
  display: flex;
  align-items: center;
}

.logo-left img {
  width: 25px;
  height: 25px;
}

.logo-left h2 {
  color: #3a7afe;
  margin-left: 5px;
  font-weight: 600;
  font-size: 20px;
}



.logo img {
    width: 25px;
    height: 25px;
}

.logo h2 {
  color: #3a7afe;
  margin: 0px;
  margin-left: 0px;
  font-weight: 600;
  font-size: 20px;
  margin-left: 5px;
}

.content-header {
    display: flex;
    justify-content: space-between;
}

.profil-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: #e9f2ff;
  border-radius: 9999px;
  padding: 8px 16px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  margin: 20px 0px;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  flex-grow: 1;
  padding: 3px;
  padding-left: 20px;
  color: #050505;
}

.search-box svg {
  width: 16px;
  height: 16px;
}

.location-box {
  display: flex;
  align-items: center;
  border-radius: 9999px;
  padding: 10px 15px;
  width: 100%;
  box-sizing: border-box;
  max-width: 155px;
  background: none;
}

.location-box select {
  border: none;
  background: none;
  outline: none;
  font-size: 16px;
  flex-grow: 1;
  padding: 3px;
  padding-left: 5px;
  color: #050505;
}

.location-box svg {
  width: 16px;
  height: 16px;
}

.profil-icon-block {
    display: flex;
    align-items: center;
    align-content: center;
}

.category-bar {
  display: flex;
  gap: 12px;
  background-color: white;
  border-radius: 12px;
  overflow-x: scroll;
  width: 100%;
  margin: 20px 0px;
}

.category-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #333;
  border: none;
  border-radius: 9999px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  font-family: "Inter", sans-serif;
}

.category-button:hover {
  background-color: #e0e0e0;
}

.category-button.active {
  background-color: #e0f0ff;
  color: #007bff;
  font-weight: 600;
}


    .calendar-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .scroll-box {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 12px;
        padding: 10px 0;
        flex: 1 1 auto;
        min-width: 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .arrow-btn {
      font-size: 22px;
      cursor: pointer;
      border: none;
      background: none;
      padding: 8px;
      border-radius: 50%;
      transition: background 0.2s;
    }

    .arrow-btn:hover {
      background: #eee;
    }

    .date-item {
      flex: 0 0 auto;
      text-align: center;
      min-width: 60px;
      padding: 6px 8px;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .date-item:hover {
      background-color: #f0f0f0;
    }

    .date-item.selected {
      background-color: #2979ff;
      color: white;
      font-weight: bold;
    }

    .weekday {
      font-size: 12px;
    }

    .event-count {
      font-size: 12px;
      color: #ff790a;
      margin-top: 2px;
    }

    .scroll-box::-webkit-scrollbar {
      display: none;
    }

    .month-label {
        flex: 0 0 auto;
        min-width: 60px;
        text-align: center;
        font-weight: bold;
        font-size: 12px;
        text-transform: uppercase;
        color: #999;
        margin-top: 8px;
        align-content: center;
    }

.calendar-icon {
    font-size: 22px;
    cursor: pointer;
    margin-left: 10px;
    background-color: #e9f2ff;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.calendar-icon:hover {
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .arrow-btn {
        display: none;
    }
}


@media (max-width: 600px) {
  .content-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .search-box {
    max-width: 100%;
    width: 100%;
  }

  .profil-icon-block {
    justify-content: flex-end;
  }

  .profil-icon-pk {
    display: none;
  }

  .profil-icon-mb {
    display: flex;
  }

  .logo {
    justify-content: inherit;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .category-bar {
    width: auto;
  }
}

@media (min-width: 600px) {
  .profil-icon-pk {
    display: flex;
  }

  .profil-icon-mb {
    display: none;
  }
}