.page-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 5px 0;
}

.page-title i {
    margin-right: 5px;
    font-size: 3rem;
    color: #4caf50;
}

.header-toggle {
    position: relative;
    width: 40px;
    height: 40px;
}

.header-toggle > i {
    line-height: 40px;
    font-size: 1.5rem; /* fs-3 yerine kendin ayarlayabilirsin */
}

#menuNotificationDot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    background-color: #dc3545; /* Bootstrap danger kırmızısı */
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(220, 53, 69, 0.7);
    z-index: 10;
}
/* Mobilde sayfa başlığı */
.page-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 5px 0;
}

.page-title i {
    margin-right: 5px;
    font-size: 3rem;
    color: #4caf50;
}

/* Header menü ikonu ve bildirim noktası */
.header-toggle {
    position: relative;
    width: 40px;
    height: 40px;
}

.header-toggle > i {
    line-height: 40px;
    font-size: 1.5rem;
}

#menuNotificationDot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    background-color: #dc3545;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(220, 53, 69, 0.7);
    z-index: 10;
}

/* Sadece mobilde üst bar animasyonu */
@media (max-width: 768px) {
    .upper-header-mobile {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 15px;
        border-bottom: 1px solid #ddd;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 9999;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }

    .upper-header-mobile.up {
        transform: translateY(-100%);
    }
}
/* MOBİL ÖNCELİKLİ TASARIM */
.letgo-search-form {
  position: relative;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 auto;
}

.letgo-search-form input[type="search"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  outline: none;
  appearance: none;
}

.letgo-search-form input[type="search"]:focus {
  border-color: #f35c5c;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  z-index: 1000;
  display: none;
  max-height: 60vh;
  overflow-y: auto;
}

.search-results.show {
  display: block;
}

.search-results a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f1f1f1;
}

.search-results a:hover {
  background: #f8f8f8;
}

/* MASAÜSTÜ UYUMLULUK */
@media (min-width: 768px) {
  .letgo-search-form {
    max-width: 600px;
    padding: 0;
  }

  .letgo-search-form input[type="search"] {
    font-size: 17px;
    padding: 14px 18px;
  }

  .search-results a {
    font-size: 16px;
  }
}

