diff --git a/css/styles.css b/css/styles.css index d7e3c1e..80b1d25 100644 --- a/css/styles.css +++ b/css/styles.css @@ -367,4 +367,58 @@ input[type="file"] { flex-direction: column; align-items: center; gap: 0.3rem; +} + +/* Push notification controls */ +.push-notification-controls { + margin-right: 10px; +} + +.notification-status-container { + margin: 1rem 0; + padding: 1rem; + background-color: #f8f9fa; + border-radius: 4px; +} + +.notification-status p { + margin-bottom: 0.5rem; +} + +.advanced-options { + margin-top: 1rem; + display: flex; + justify-content: space-between; + border-top: 1px solid #eee; + padding-top: 1rem; +} + +.advanced-options button { + width: 48%; +} + +/* Status indicators */ +.status-granted { + color: #28a745; + font-weight: bold; +} + +.status-denied { + color: #dc3545; + font-weight: bold; +} + +.status-default { + color: #ffc107; + font-weight: bold; +} + +.status-active { + color: #28a745; + font-weight: bold; +} + +.status-inactive { + color: #6c757d; + font-weight: bold; } \ No newline at end of file diff --git a/index.html b/index.html index 397d2a3..84ff5e8 100644 --- a/index.html +++ b/index.html @@ -24,6 +24,11 @@