/* Parent Scoped Class Isolation */
.dream-numerology-component {
  padding: 12px;
}

/* Red Hindi Label Above Search Bar */
.dream-numerology-component .search-label {
  color: #e53e3e;
  font-weight: 700;
  font-size: 13.5px;
  margin-left: 4px;
}

/* Search Bar Wrapper */
.dream-numerology-component .search-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dream-numerology-component .search-input-container {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.dream-numerology-component .search-icon {
  position: absolute;
  left: 16px;
  font-size: 16px;
  color: #6b7280;
  pointer-events: none;
}

.dream-numerology-component .search-input {
  width: 100%;
  height: 48px;
  padding-left: 44px;
  padding-right: 16px;
  background-color: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 25px;
  font-size: 14px;
  color: #1f2937;
  outline: none;
}

.dream-numerology-component .search-input:focus {
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
  border-color: #f99371;
}

.dream-numerology-component .search-submit-btn {
    border: none;
    background: var(--gradient);
    color: #fff;
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 5px 14px rgba(255, 0, 102, .35);
    transition: transform 0.2s, opacity 0.2s;
}

.dream-numerology-component .search-submit-btn:hover {
  transform: scale(1.05);
  background-color: #b8049a;
}

/* Dream Item Card */
.dream-numerology-component .dream-card {
  background-color: #ffeedd;
  border: 1.5px solid #f2ab7c;
  border-radius: 18px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.dream-numerology-component .dream-icon-wrapper {
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

.dream-numerology-component .dream-info {
  flex: 1;
  margin-right: 12px;
}

.dream-numerology-component .dream-title {
  font-weight: 800;
  font-size: 14px;
  color: #111827;
  margin: 0;
}

.dream-numerology-component .dream-keywords {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}

/* Number Badges */
.dream-numerology-component .dream-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dream-numerology-component .digit-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1.5px solid #6366f1;
  color: #4338ca;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dream-numerology-component .jodi-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ff4d4d;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* No Results Found State */
.dream-numerology-component .no-results-card {
  width: 100%;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  color: #4b5563;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}