/* SEO Görünmez Sınıfı */
.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Menü genel */
.mb-sidebar-menu {
  padding: 10px;
  background: #fff;
  border-radius: 12px;
}

/* Menü item */
.mb-menu-item {
  margin-bottom: 10px;
}

/* Ana butonlar */
.mb-menu-button,
.mb-menu-button.single-link,
.mb-menu-item > button.mb-menu-button {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: #f3f3f3;
  border: 1px solid #ddd;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Hover */
.mb-menu-button:hover,
.mb-menu-button.single-link:hover {
  background: #ececec;
  border-color: #ccc;
}

/* Açık olan (aktif) */
.mb-menu-button.active {
  background: #eaeaea;
  border-color: #ccc;
}

/* P TAG */
.mb-menu-button p {
  margin: 0;
  flex: 1;
  padding-right: 10px;
}

/* SVG ok */
.mb-menu-button svg {
  margin-left: auto;
  display: block;
  transition: transform 0.25s ease;
}

.mb-menu-button.active svg {
  transform: rotate(180deg);
}

/* Alt menü kutu */
.mb-menu-content {
  margin-top: 6px;
  padding: 6px 0;
  border-radius: 10px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

/* Alt linkler */
.mb-menu-content ul li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #e5e5e5;
  transition: 0.2s;
  background: transparent;
}

.mb-menu-content ul li:last-child a {
  border-bottom: none;
}

.mb-menu-content ul li a:hover {
  background: #eee;
}

/* Özel highlight */
.mb-menu-button.single-link[href*="gecmis"] {
  background: #e8e3d3;
  color: #b8953b;
  border-color: #ddd3b0;
}

/* Login alanı */
.mb-sidebar-login {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 0 15px;
}

.login-buttons {
  display: flex;
  gap: 10px;
}

.login-btn,
.register-btn {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.login-btn {
  background: #f5f5f5;
  border: 1px solid #ccc;
  color: #333;
}

.login-btn:hover {
  background: #eaeaea;
}

.register-btn {
  background: linear-gradient(135deg, #c59d3f, #a87c2a);
  color: #fff;
  border: none;
}

.register-btn:hover {
  opacity: 0.9;
}
