/* Base Layout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0e1a29;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.site-header {
  background-color: #000000;
  color: #ffffff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  max-width: 150px;
  height: auto;
}

.nav-links a {
  color: #ffffff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #fb7e6b;
}

/* Search Section */
.search-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.search-container input {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  outline: none;
}

.search-container button {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #fb7e6b;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Suggestions Dropdown */
.suggestions {
  background: #ffffff;
  color: #000000;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.
}


.suggestions div {
  padding: 0.75rem;
  cursor: pointer;
}

.suggestions div:hover {
  background-color: #fb7e6b;
  color: #ffffff;
}

/* Search Results Section */
.results {
  margin-top: 2rem;
  width: 100%;
  max-width: 600px;
  text-align: left;
}

/* Individual Result Entry */
.result-entry {
  border-left: 4px solid #fb7e6b;
  background-color: #1b2e3e;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

/* Colored Borders by Type */
.result-entry.text {
  border-left-color: #6bc0ff; /* Blue for text */
}

.result-entry.image {
  border-left-color: #74d600; /* Green for images */
}

.result-entry.file {
  border-left-color: #fb7e6b; /* Coral for files */
}

/* Title Style */
.result-entry h3 {
  font-weight: bold;
  color: #ffe600; /* Yellow highlights */
  margin-bottom: 0.5rem;
}

/* Result Meta Info */
.result-entry p {
  margin: 0.3rem 0;
}

/* Links */
.result-entry a {
  color: #6bc0ff;
  font-weight: bold;
  text-decoration: none;
}

.result-entry a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  position: sticky;
  bottom: 0;
}


