/* wallet-modal.css */
.modal {
    display: flex;
    background: #1e1e2e;
    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 700px;
    overflow: hidden;
    border: 2px solid #7a68ff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 1000;
}

.modal-sidebar {
    width: 35%;
    background-color: #2a2a3e;
    padding: 20px;
    border-right: 1px solid #444;
    overflow-y: auto;
}

.modal-sidebar h2 {
    font-size: 1.2rem;
    color: #ccccff;
    margin-bottom: 20px;
}

.modal-sidebar h3 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
}

.wallet-option {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.wallet-option:hover {
    background-color: #35354b;
}

.wallet-option img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.wallet-option span {
    font-size: 0.9rem;
    color: #ccccff;
}

.modal-content {
    width: 65%;
    padding: 20px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ccccff;
}

.close-btn {
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
}

.info-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-section img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
}

.info-section h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #ccccff;
    margin: 0;
}

.info-section p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.info-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6b5cff;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s;
}

.info-button:hover {
    background-color: #5a4ddb;
}

.learn-more {
    font-size: 0.85rem;
    color: #6b5cff;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}
