* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;;
}

body {
  display: flex;
  background-color: #2b2f42;
  color: #fff;
  overflow-x: hidden;
}

.content {
  flex: 1;
  padding: 20px;
}

.hr {
  border: none;
  height: 1px;
  background-color: #555;
  width: 100%;
  margin: 30px 0;
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.search-input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: #fff;
  color: #2e3a47;
}
.fa-microphone {
  position: absolute; 
  top: 50%;
  right: 10px; /* Adjust position to place icon correctly */ 
  font-size: 18px; 
  transform: translateY(-50%);
  cursor: pointer; 
  color: #2e3a47;
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #2e3a47;
  font-size: 18px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

header .profile {
  display: flex;
  align-items: center;
}

header .profile i {
  margin-right: 30px;
}

header .profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}


.trivia {
  margin-bottom: 20px;
}

.cards {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  margin-left: 0px;
  flex-wrap: wrap;
}

.card {
  background-color: #353a50;
  flex: 1 1 200px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 150px;
}

.card p {
  margin-bottom: 10px;
  color: #a5a5a5;
}

.card h2 {
  font-size: 2em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .content {
    margin-left: 0;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .content {
    margin-left: 0;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .content {
    margin-left: 0;
    padding: 10px;
  }
}
        body { font-family: sans-serif; }
        .icon-list { list-style: none; padding: 0;}
        .icon-item { display: flex; align-items: center; margin-bottom: 10px; cursor: pointer; }
        .icon-item i { margin-right: 10px; font-size: 1.2em; }
        .icon-item span { font-weight: bold; }
        .green { color: #28a745; }
        .blue { color: #007bff; }
        .grey { color: #6c757d; }
        .food { color: #dc3545; }
        .physico-chemical { color: #ffc107; }
        .social { color: #17a2b8; }

        /* Menu styles */
        .menu { display: none; position: absolute; top: 50px; right: 10px; background: #353a50; border: 1px solid #ccc; padding: 10px; border-radius: 5px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
        .menu.active { display: block; }
        .menu-item { cursor: pointer; padding: 5px 10px; }
        .menu-item:hover { background: #2b2f42; }
