body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

button {
    padding: 12px 24px;
    font-size: 18px;
    background-color: #ff4500;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #d13900;
}

/* Стили для лоадера */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
}

.loader {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 300px;
}

.loader-circle {
    width: 100px;
    height: 100px;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #ff4500;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.loader-verify {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.loader-verify::before {
    content: '✔';
    color: #28a745;
    font-size: 20px;
    margin-right: 8px;
}

.loader-subtext {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.loader-error {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.disconnect-button {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

.disconnect-button:hover {
    background-color: #c82333;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Стили для меню выбора кошельков */
.wallet-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
}

.wallet-menu {
    background: #1a2526; /* Тёмный фон, как на скриншоте */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 400px; /* Увеличиваем размер */
    max-width: 90%;
}

.wallet-menu h2 {
    font-size: 24px;
    font-weight: bold;
    color: #fff; /* Белый текст */
    margin-bottom: 30px;
    text-align: left;
}

.wallet-option {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #2a3a3b; /* Тёмная граница */
    cursor: pointer;
}

.wallet-option:last-child {
    border-bottom: none;
}

.wallet-option img {
    width: 32px; /* Увеличиваем иконки */
    height: 32px;
    margin-right: 15px;
}

.wallet-option span {
    font-size: 18px;
    color: #fff; /* Белый текст */
}

.wallet-option:hover {
    background-color: #2a3a3b; /* Тёмный hover-эффект */
}