      .searchContainer {
        display: none;
        justify-content: center;
        position: fixed;

         top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.573);
  padding: var(--space-lg);
}
.searchInner {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  
  background: var(--card-bg);
  max-width: 800px;
  border-radius: var(--radius-sm);
  width: 100%;
  max-height: 500px;
  overflow: auto;
}
.searchInput {
  max-width: 600px;
  width: 95%;
  margin: var(--space-lg) auto;
  position: sticky;
  top: 0;
  box-shadow: 0 0 15px var(--shadow);
}
.searchResults {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.searchType {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: var(--space-xs);
}

.searchType.workspace {
  color: #0367d2;
}

.searchType.task {
  color: #e38800;
}
.searchType.note {
    color: #49db00;
}
.searchItem {
  opacity: 1;
  font-size: 1.05rem;
  color: var(--text-primary);
  padding: var(--space-sm);
  border-bottom: 1px solid var(--border-primary);
  width: 95%;
  margin: var(--space-xs) auto;
  background-color: var(--bg-secondary);
border-radius: var(--radius-sm);
transition: background 0.2s ease;
}
.searchItem p {
  margin-bottom: 0;
}
.searchItem:hover {
    color: var(--text-secondary);
text-decoration: none;
  background: var(--surface-secondary);
}
.searchItem:hover a {
  text-decoration: none;
}