.action-notice {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: #111;
    color: #fff;
    padding: 14px 16px;
    border-radius: 10px;
    width: 340px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    font-size: 14px;
    z-index: 9999;
}

.action-notice p {
    margin: 0 0 10px;
    line-height: 1.4;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.action-buttons button {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    background: #9e50f1;
    color: #fff;
}

.action-buttons button.secondary {
    background: #2a2a2a;
}