.bz-wc-pds-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.bz-wc-pds-button:hover {
    background-color: #45a049;
}

.bz-wc-pds-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.bz-wc-pds-loading {
    position: relative;
    padding-right: 30px;
}

.bz-wc-pds-loading:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: bz-wc-pds-spin 1s linear infinite;
}

@keyframes bz-wc-pds-spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
} 