body {
  margin: 0;
  font-family: Arial;
  background: #f4f6f8;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: white;
}

.left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logoBlock {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
}

.text {
  display: flex;
  flex-direction: column;
}

.title {
  font-size: 16px;
  font-weight: bold;
}

.subtitle {
  font-size: 12px;
  color: gray;
}

/* SEARCH ICON */
#searchBtn {
  font-size: 18px;
  cursor: pointer;
}

/* SEARCH BAR */
#searchBar {
  display: flex;
  align-items: center;
  padding: 10px;
  background: white;
  border-top: 1px solid #ddd;
}

#searchBar input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: none;
  outline: none;
}

#closeSearch {
  font-size: 18px;
  cursor: pointer;
}

.hidden {
  display: none;
}

/* TOOLBAR */
#toolbar {
  padding: 10px;
  background: #e9ecef;
}

#toolbar button {
  margin-right: 8px;
  padding: 6px 10px;
}

/* CONTENT */
#content {
  padding: 15px;
}

#content img {
  width: 100%;
  max-width: 100%;
}

.download {
  margin-top: 10px;
  padding: 10px;
  background: #007bff;
  color: white;
  border: none;
  width: 100%;
}

/* 📱 MOBILE */
@media (max-width: 600px) {
  .title {
    font-size: 14px;
  }

  .subtitle {
    font-size: 10px;
  }

  .logo {
    width: 32px;
  }

  #searchBar input {
    font-size: 14px;
  }
}