.hash-container.card {
  display: grid;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#result {
  padding: 2rem;
  background-color: var(--box-bg-color);
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.result-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 1rem;
  margin-top: 2rem;
}

.result-item {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 1.6rem rgba(0, 0, 0, 0.15);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hash-icon-name {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hash-icon-name i {
  margin-right: 10px;
  color: #2d88ff;
}

.hash-value {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.6rem;
  color: #666;
  word-wrap: break-word;
}
