/**
 * Frontend styles for DiziPush plugin
 */

/* Add any frontend-specific styles here */
.dizipush-notification-button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dizipush-notification-button:hover {
    background: #005177;
}

.dizipush-notification-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}