/* Sidebar install button icon (Font Awesome download icon) */
#taskmenu a.install-app:before {
    content: "\f019";
}

/* Sidebar notify button icon (Font Awesome bell icon) */
#taskmenu a.notify-app:before {
    content: "\f0f3";
}

/* PWA Modal overlay */
#rc-pwa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PWA Modal card */
#rc-pwa-modal {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 340px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#rc-pwa-modal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

#rc-pwa-modal-body {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
}

/* Modal buttons container */
#rc-pwa-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Modal button base */
.rc-pwa-modal-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 15px;
    cursor: pointer;
    flex: 1;
}

.rc-pwa-modal-btn-primary {
    background: #575757;
    color: #fff;
}

.rc-pwa-modal-btn-primary:hover {
    background: #444;
}

.rc-pwa-modal-btn-secondary {
    background: #e8e8e8;
    color: #333;
}

.rc-pwa-modal-btn-secondary:hover {
    background: #ddd;
}
