.owl-nav {
  position: absolute !important;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between; /* چپ و راست */
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.owl-nav button {
  pointer-events: all;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 100% !important;
  width: 2rem;
  height: 2rem;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  --tw-text-opacity: 1 !important;
  color: rgb(60 72 88 / var(--tw-text-opacity)) !important;
  --tw-shadow: 0 5px 13px rgb(60 72 88 / 0.20) !important;
  --tw-shadow-colored: 0 5px 13px var(--tw-shadow-color) !important;
  box-shadow :var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  border-width: 0px !important;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 5px;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f1f1;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-name {
    font-weight: 500;
}

.search-result-type {
    font-size: 0.85em;
    color: #6c757d;
    background: #f1f1f1;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Dark mode support */
.dark .search-results-dropdown {
    background: #1e293b;
    border: 1px solid #334155;
}

.dark .search-result-item {
    color: #e2e8f0;
    border-bottom: 1px solid #334155;
}

.dark .search-result-item:hover {
    background-color: #334155;
}

.dark .search-result-type {
    color: #94a3b8;
    background: #334155;
}
