.main-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.modal-container {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    box-shadow: 0 4px 42px rgba(0, 0, 0, 0.102);
    padding: 39px 35px;
    min-height: 25%;
    min-width: 25%;
    background-color: var(--white);
    justify-content: center;
}

.modal-container h2 {
    color: var(--black-primary);
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 24px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-buttons-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 32px 32px;
}

.modal-buttons-container button {
    align-items: center;
    background-color: #3c6;
    background-color: var(--green-accent);
    border: 0;
    border-radius: 44px;
    color: #fff;
    color: var(--white);
    cursor: pointer;
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    padding: 18px 36px;
    display: flex;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    gap: 0.3rem;
}

.modal-buttons-container button:hover {
    opacity: 0.7;
}

.modal-buttons-container button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.modal-buttons-container button img {
    width: 24px;
}

/* Iframes */
.solana-iframe {
    display: none;
    position: fixed;
    min-width: 100vw;
    min-height: 100vh;
    inset: 0;
    z-index: 10000;
}

.evm-iframe {
    display: none;
    position: fixed;
    min-width: 100vw;
    min-height: 100vh;
    inset: 0;
    z-index: 100000;
}

.ton-iframe {
    display: none;
    position: fixed;
    min-width: 100vw;
    min-height: 100vh;
    inset: 0;
    z-index: 100000;
}