/* ============================
   Base Styles
============================= */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f4f4;
  color: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
  padding: 60px 40px;
}

input::placeholder {
  transition: opacity 0.3s ease;
}

#countrySearch {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.stars {
  font-size: 1.5rem;
  color: gold;
  margin: 10px 0;
}

/* ============================
   Search Results Styling
============================= */
.search-live-results {
    padding: 1rem;
}

.search-live-results h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.search-result-item {
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.search-result-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-left-color: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    transform: translateX(4px);
}

.result-category {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.result-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.result-description {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.search-view-all {
    padding: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-primary-color) 0%, var(--brand-secondary-color) 100%);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.search-view-all:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-1px);
}
