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

    body {
      display: flex;
      background: #f5f7fa;
    }

    .sidebar {
      width: 250px;
      background: #16162e;
      color: white;
      height: 100vh;
      padding: 20px;
    }

    .sidebar h2 {
      margin-bottom: 30px;
    }

    .sidebar ul {
      list-style: none;
    }

    .sidebar ul li {
      padding: 12px;
      margin-bottom: 10px;
      border-radius: 8px;
      cursor: pointer;
    }

    .sidebar ul li:hover,
    .sidebar ul li.active {
      background: rgba(255,255,255,0.1);
    }

    /* Main */
    .main {
      flex: 1;
      padding: 30px;
    }

    .header h1 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .header span {
      color: #1f9d6b;
    }

    .container {
      display: flex;
      gap: 20px;
      margin-top: 20px;
    }

    .card {
      background: white;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .filters {
      width: 300px;
    }

    .filters input,
    .filters select {
      width: 100%;
      padding: 10px;
      margin-top: 8px;
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid #ddd;
    }

    .btn {
      background: #1dbf73;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 8px;
      width: 100%;
      cursor: pointer;
      font-weight: bold;
    }

    .btn:hover {
      background: #17a864;
    }

    .result {
      flex: 1;
    }

    .price {
      font-size: 40px;
      color: #1f9d6b;
      margin: 15px 0;
    }

    .details {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .detail-box {
      flex: 1;
      text-align: center;
      padding: 15px;
      border-radius: 10px;
      background: #f9fafb;
    }

    .image {
      margin-top: 15px;
    }

    .image img {
      width: 100%;
      border-radius: 12px;
    }

    .info {
      margin-top: 20px;
      background: #eef7f2;
      padding: 15px;
      border-radius: 10px;
    }

 
.sidebar svg {
  width: 20px;
  height: 20px;
}
.green-text {
  color: #1f9d6b;
}

.title-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  margin: 0;
}

.title-with-icon svg {
  width: 18px;
  height: 18px;
  color: #16162e;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper input {
  width: 100%;
  padding: 10px 10px 10px 40px; /* space for icon */
  font-family: 'Inter', sans-serif;
}

.input-icon {
  position: absolute;
  left: 10px;
  top: 45%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #16162e;
  pointer-events: none;
}

.btn {
  display: flex;
  align-items: center;
  gap: 130px;
  font-family: 'Inter', sans-serif;
}

.btn-icon {
  width: 16px;
  height: 16px;
  color: white; /* matches text */
}

.result-card {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  gap: 20px;
}

.result-text {
  flex: 1;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #1f9d6b;
  margin: 10px 0;
}

.trend {
  color: #1f9d6b;
  font-size: 14px;
}

.result-image img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.sidebar ul li {
  display: flex;
  align-items: center;
  gap: 15px; 
}