/* Yükleme Çarkı (Spinner) */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid #191970;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    /* z-index: 9999999;
  position: absolute; */

}

/* Sayfanın ortasında spinner'ı gösterecek katman */
#spinner-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0A0E17;
    opacity: 0.8;
    display: none;
    /* Başlangıçta gizli */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
}

/* Animasyon: dönüş */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pop-up-connect-wallet {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #191970;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 9999;
    pointer-events: none;
}

.pop-up-connect-wallet.show {
    opacity: 1;
    pointer-events: auto;
}