body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

.icon{
  height: 10;
  width: 10;
  background-color: white;
  color: #34495e;
  margin: 5px;
  padding: 5px 5px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.3s;
}
.scroll-wrapper {
  position: relative;
}

.top-bar {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  background-color: #2c3e50;
  padding: 10px;
  scrollbar-width: none;
}

.top-bar::-webkit-scrollbar {
  display: none;
}

.tile {
  background-color: #34495e;
  color: white;
  margin: 5px;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.3s;
}

.tile:hover {
  background-color: #1abc9c;
}

.tile i {
  font-size: 20px;
}

.scroll-progress {
  height: 4px;
  background-color: #1abc9c;
  width: 0%;
  transition: width 0.1s linear;
}
