.custom-wp-button-container {
    width: 100%;
    margin-top: 10px;
}

.wp-custom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; 
    color: white !important;
    text-decoration: none !important;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border: none;
    text-align: center;
}

.wp-custom-btn:hover {
    background-color: #128C7E; 
}

.wp-custom-btn svg {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .wp-custom-btn {
        font-size: 13px;
    }
}