/* Global Styling */
body {
  font-family: 'Poppins', sans-serif;
  background: #1a1a1a;
  color: #f5f5f5;
  padding-bottom: 60px;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  border-radius: 0 0 30px 30px;
  padding: 15px; /* Reduced padding for smaller header */
}

.title {
  color: #fff;
  font-size: 2rem; /* Reduced font size for smaller header */
  font-weight: 700;
}

.title .icon {
  margin-left: 12px;
  color: #ffd700;
}

.container {
  padding: 30px;
}

/* Glass Card Summary */
.notification {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.notification:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

/* Tutorial Box */
.tutorial {
  width: 95%;
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 142, 83, 0.08);
  border: 1px solid rgba(255, 142, 83, 0.2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.tutorial .title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 15px;
}

.tutorial .subtitle {
  font-size: 1.3rem;
  color: #f0e7e7;
}

/* Autocomplete Dropdown */
.dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #2a2a2a;
  border-bottom: 1px solid #ff6b6b;
  color: #f5f5f5;
  transition: background 0.3s, color 0.3s;
}

.dropdown-item:hover {
  background: #ff6b6b;
  color: #fff;
}

.dropdown-item img {
  height: 55px;
  margin-right: 12px;
  border-radius: 8px;
}

.results {
  max-height: 520px;
  overflow-y: auto;
  border: 1px solid #3a3a3a;
  border-radius: 16px;
  background-color: #222222;
}

/* Centered image */
figure.image {
  display: flex;
  justify-content: center;
  background-color: transparent;
  padding: 15px;
}

figure .image img {
  width: 160px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

/* Responsive Columns */
.columns {
  flex-wrap: wrap;
  gap: 25px;
}

.column {
  flex: 1;
  min-width: 320px;
}

/* Scrollbar Styling */
.results::-webkit-scrollbar {
  width: 10px;
}

.results::-webkit-scrollbar-thumb {
  background: #ff8e53;
  border-radius: 5px;
}

.results::-webkit-scrollbar-track {
  background: #2a2a2a;
}