/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.firebase-notifications-container {
    margin: 1rem 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.firebase-notification-status {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.firebase-notification-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: #1e88e5;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.firebase-notification-button:hover {
    background-color: #1976d2;
}

.firebase-notification-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.4);
}

.firebase-notification-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

#firebase-notification-unsubscribe {
    background-color: #e53935;
}

#firebase-notification-unsubscribe:hover {
    background-color: #d32f2f;
}

#firebase-notification-unsubscribe:focus {
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.4);
}

/* RTL Support */
html[dir="rtl"] .firebase-notification-icon {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* Error message */
.firebase-notifications-error {
    padding: 0.75rem;
    border-radius: 4px;
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
    margin: 0.5rem 0;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .firebase-notification-button {
        width: 100%;
    }
}