/* style.css */
.swpl-wallet-container {
    margin-top: 20px;
    text-align: center;
    clear: both;
}

.swpl-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 20px;
    margin-top: 20px;
}

.swpl-divider::before,
.swpl-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
    margin: 0 10px;
    opacity: 0.5;
}

.swpl-connect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 15px;
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.swpl-connect-btn:hover {
    background-color: #f8f9fa;
}

.swpl-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: linear-gradient(135deg, #f6851b, #cd6116);
    border-radius: 50%;
    display: inline-block;
}

.swpl-error {
    color: #d63638;
    margin-top: 10px;
    font-size: 14px;
    display: none;
}