/* International version specific styles */

.wallet-selection {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.wallet-selection-title {
    color: #4a9eff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.wallet-item {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wallet-item:hover {
    border-color: rgba(74, 158, 255, 0.6);
    background: rgba(74, 158, 255, 0.1);
    transform: translateY(-2px);
}

.wallet-item.selected {
    border-color: #4a9eff;
    background: rgba(74, 158, 255, 0.2);
}

.wallet-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(74, 158, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #4a9eff;
}

.wallet-name {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 500;
}

.wallet-item.selected .wallet-name {
    color: #4a9eff;
}

@media (max-width: 768px) {
    .wallet-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .wallet-item {
        padding: 12px;
    }

    .wallet-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .wallet-name {
        font-size: 11px;
    }
}

