.input-group {
  flex-wrap: nowrap;
}

.input-group .fas {
  z-index: 2;
}

/* Metamask buton stilleri */
.metamask-button {
    width: 100%;
    margin-top: 15px;
    padding: 12px 24px;
    border: 2px solid #F6851B;
    background: linear-gradient(to right, #F6851B, #E2761B);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Bağlı durum için stil */
.metamask-button.connected {
    border-color: #00b09b;
    background: linear-gradient(to right, #00b09b, #96c93d);
    cursor: default;
}

.metamask-button.connected:hover {
    transform: none;
    box-shadow: none;
}

/* Çıkış butonu stilleri */
.metamask-button.logout {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    border-color: #ff416c;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    display: block;
}

.metamask-button.logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.2);
    background: linear-gradient(to right, #ff4b2b, #ff416c);
}

.metamask-button.logout span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.metamask-button.logout span::before {
    content: '\f2f5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Wallet address gösterimi */
.wallet-address {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-left: 8px;
}

/* Bildirim stilleri */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.success {
    background: linear-gradient(to right, #00b09b, #96c93d);
    box-shadow: 0 4px 15px rgba(0, 176, 155, 0.2);
}

.notification.error {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.2);
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}
