.solana-wallet-login-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.swl-connect-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.swl-connect-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.swl-connect-button:disabled {
    background: #cccccc;
    transform: none !important;
    cursor: not-allowed;
}

.swl-wallet-address {
    margin: 1rem 0;
    padding: 0.5rem;
    background: #f1f1f1;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.swl-min-balance-notice {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.swl-user-info {
    margin-top: 1rem;
}

.swl-user-info p {
    margin: 0.5rem 0;
    color: #333;
}

.swl-logout-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #f1f1f1;
    color: #d63638;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.swl-logout-button:hover {
    background: #e0e0e0;
    color: #b32d2e;
}

