/* Genel Stil */
.header__signin,
.header__signup {
  width: auto;
  min-width: 130px;
  height: 48px;
  padding: 0 16px 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #232a4b;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
      clip-path: polygon(10% 0%, /* Sol üst */ 90% 0%, /* Sağ üst */ 100% 50%, /* Sağ orta (uç) */ 90% 100%, /* Sağ alt */ 10% 100%, /* Sol alt */ 0% 50% /* Sol orta (uç) */);
  margin-right: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
}

.header__signup {
  background-color: #0077ff !important;
  color: white;
}

/* İkonlar */
.header__signin::before,
.header__signup::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

.header__signin::before {
  background-image: url("https://i.imgur.com/p3kkt5J.png");
}

.header__signup::before {
  background-image: url("https://i.imgur.com/Bb8Muvl.png");
}

/* Hover Işık Efekti */
.header__signin:hover,
.header__signup:hover {
  filter: brightness(1.1) drop-shadow(0 0 8px #0077ff);
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
  .header__signin,
  .header__signup {
    min-width: 115px;
    padding: 0 14px 0 48px;
    font-size: 12.5px;
  }

  .header__signin svg,
  .header__signup svg {
    display: none !important;
  }

  /* Eğer span görünmüyorsa zorla göster */
  .header__signin span,
  .header__signup span {
    display: inline !important;
    opacity: 1 !important;
    text-indent: 0 !important;
  }

  /* Alternatif olarak yazı hiç yoksa ekle */
  .header__signin::after {
    content: "Login";
    position: relative;
    margin-left: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: white;
  }
}

.header__actions {
    gap: 0px;
}